Greetings,
I am writing an application that I want to be able to use through the console as well as through a form. My application is set up to start up a form if there are no arguments on the command line, and to run in a console window if any arguments exist.
My problem is that my form doesn't seem to be updating correctly since the application is set up as a console app. I remember reading about message pumping, but I didn't fully understand it.
Do I have to do manual message pumping to update my main form if the application is a console app If so, what's the recommended way to do this
Thanks!