How do I create, execute and control a winform from within a console application?
|
|
|
|
|
|
|
The easiest option is to start a windows forms project, then change the output-type to Console Application. Alternatively, just add a reference to System.Windows.Forms.dll, and start coding:
The important bit is the [STAThread] on your Main() method, required for full COM support. |
|||
|
|
|
You can create a winform project in VS2005/ VS2008 and then change its properties to be a command line application. It can then be started from the command line, but will still open a winform. |
||
|
|
|
|
You should be able to use the Application class in the same way as Winform apps do. Probably the easiest way to start a new project is to do what Marc suggested: create a new Winform project, and then change it in the options to a console application |
||
|
|
|
|
Here is the best method that I've found: First, set your projects output type to "Windows Application", then P/Invoke AllocConsole to create a console window.
-bill |
||
|
|
|
|
Only Bill's answer ( AllowConsole ) will work, and only on XP or above. In Windows an application has a GUI or a console; you have create a new console to do what you want. |
||
|
|
