If you need to check for an existing console (ie, if the program was launched from the command window) please see AttachConsole,
Tips & Tricks:
This is a simple way to create a "dual-mode" application can be a console or windows forms application.
Sample Code:
// Compile as a Windows Forms app.
[STAThread]
static void Main(string[] args)
{
if (args.Length < 1)
{
Application.Run(new Form1());
}
else
{
AllocConsole();
Console.WriteLine("Hello, World!");
Console.Write("Press a key to continue...");
Console.Read();
}
}
Sample Code:
' Compile as a Windows Forms Application
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
If Not AllocConsole() Then
MsgBox(String.Format("Failed to attach console with error: {0}", Marshal.GetLastWin32Error()))
End If
Console.WriteLine("Just saying 'hi' from the console.. :)")
Console.WriteLine("{0} + {1} = {2}", 100, 200, (100 + 200))
End Sub
Alternative Managed API:
Do you know one? Please contribute it!
The AllocConsole API
2/21/2012 4:01:37 PM - -84.217.32.118
Attach current process to the console of a specified process, or to the current one by default (see [ATTACH_PARENT_PROCESS] ))
4/18/2008 4:07:52 PM - -82.42.5.114
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).