I have a GUI C++ application (Visual Studio 2008) that needs to be converted to a console one.
I don’t have any experience in C programming. Mostly I use .NET. Where do I start?
I have a GUI C++ application (Visual Studio 2008) that needs to be converted
Share
Down-converting a GUI app is major surgery. The programming model is entirely different, a GUI app is event driven. Relying on a message loop to deliver events, processed in message handlers. And typically a bunch of controls that take care of the grunge work of taking input.
Given that you have to completely redesign the app to make it work as a console mode app and that you don’t have experience with the language, writing this in a .NET language you have experience with is the best way to get it completed quickly.