I currently have an application with a GUI.
Would it be possible to use this same application from the commandline (without GUI and with using parameters).
Or do I have to create a separate .exe (and application) for the commandline tool?
|
I currently have an application with a GUI. Would it be possible to use this same application from the commandline (without GUI and with using parameters). Or do I have to create a separate .exe (and application) for the commandline tool? |
||||
| show 3 more comments |
Here's a short example:
If your app isn't already structured to cleanly do silent processing (if all your logic is jammed into your WinForm code), you can hack silent processing in ala CharithJ's answer. EDIT by OP Sorry to hijack your answer Merlyn. Just want all the info here for others. To be able to write to console in a WinForms app just do the following:
|
|||||||||||||||
|
|
In your program.cs class keep the Main method as it is but add
In mainform.cs constructor
|
|||||||||
|
|
I think it is possible, just set your subsystem to "console", you will see a console window as well as the GUI window. But in order to accept commands from the console window, I guess you will have to create an extra thread to do it. |
|||
|
|
You may need to structure your Application as a Console Application, identify what you do on "Actions" - like clicking of the button - into separate class, include a form that can be shown if there were no command line arguments supplied, and handle events by routing them to the common methods in your "Action" class. |
|||
|
string[] argsto your Main method – Alastair Pitts Aug 26 '11 at 0:10Application.Run(new MyMainForm());, then. Place it in anifblock, and if you get arguments, don't run that line of code. – Merlyn Morgan-Graham Aug 26 '11 at 0:57