I've created a program that has two projects: a windows UI and an "engine". I would like to make it so that the user can execute the program from a command prompt passing in some arguments and the engine will automatically execute them and spit out the results. OR the user can launch the UI and choose all of their options via dropdown lists and such and then click a button to tell the engine to do it's work. I actually already have it working using something I found a long time ago, but I'm trying to see if there's an easier way. The way I found involves adding a Win32 class and creating externals to AllocConsole, FreeConsole, and AttachConsole from kernel32.dll. Is there an easier way? Thanks.
feedback
|
|
it's simple, make your windows forms application and in the
simply call your engine and start processing. it's important to code your engine properly and have also the UI using the same engine when the user is starting those commands from the user interface, so to avoid any useless code duplication. we use this approach in many programs and we are satisfied, if you do not call | |||||
feedback
|
|
It's even simpler. Create a Console application. It will parse the command line to get the parameters, then will call your engine. Let the WinForms application worry about GUI, let the Console application worry about the command-line. | |||
|
feedback
|
|
Create four separate configurations, two for GUI and two for Console:
The above screenshot is for solution configurations. You’ll have to do the same again for the project (in the above screenshot the project that has those four configurations is Rummage). Here is an excerpt from
Notice especially:
This way you can run (and debug) either the GUI or the console version in Visual Studio, while in a build script you can simply build all of them (and into different directories or different EXE file names). | |||
|
feedback
|
