Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than user32, prefix the name with the module name and a period.
/// <summary>
/// Main entry point for the application.
/// </summary>
[STAThread]
static int
Main
(
string[] arguments
)
{
// Check for running instance
Process thisProcess = Process.GetCurrentProcess();
Process[] processes = Process.GetProcessesByName(thisProcess.ProcessName);
if (processes.Length > 1)
{
// One is us (which will end); the other we activate
int index = 0;
if (processes[index].Id == thisProcess.Id)
index = 1;
IntPtr hWnd = processes[index].MainWindowHandle;
if (IsIconic(hWnd))
ShowWindowAsync(hWnd, SW_RESTORE);
public Form1()
{
//
// Required for Windows Form Designer support
//
InitializeComponent();
//
// TODO: Add any constructor code after InitializeComponent call
//
}
Alternative Managed API:
Do you know one? Please contribute it!
/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
//
// Form1
//
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.ClientSize = new System.Drawing.Size(528, 266);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
}
#endregion
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Process[] p = Process.GetProcessesByName( Process.GetCurrentProcess().ProcessName , Environment.MachineName );
if ( p.Length > 1 )
{
MessageBox.Show( "Already one instance is running......." );
Form1 Frm = new Form1();
Frm.ShowForm();
return;
}
else
Application.Run(new Form1());
}
/// <summary>
/// Main entry point for the application.
/// </summary>
[STAThread]
static int
Main
(
string[] arguments
)
{
// Check for running instance
Process thisProcess = Process.GetCurrentProcess();
Process[] processes = Process.GetProcessesByName(thisProcess.ProcessName);
if (processes.Length > 1)
{
// One is us (which will end); the other we activate
int index = 0;
if (processes[index].Id == thisProcess.Id)
index = 1;
IntPtr hWnd = processes[index].MainWindowHandle;
if (IsIconic(hWnd))
ShowWindowAsync(hWnd, SW_RESTORE);
SetForegroundWindow(hWnd);
// Exit
return 0;
}
// Normal startup code continues here...
}
Alternative Managed API:
Do you know one? Please contribute it!
The IsIconic API
3/16/2007 8:27:25 AM - wsullivan@youknowwhatparttoremovedoceserve.com-207.59.153.88
TODO - a short description
3/16/2007 8:32:49 AM - anonymous
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).