c++ - convert a console app to a windows app -
(its long story) have large complex project file containing windows program. unfortunately project built console app. program compiles , links ok when runs brings console instead of collection of windows hoping for. looked @ command line , saw "/subsystem:console" whereas should "/subsystem:windows". have no idea how change command line. there box can tick in project setting somewhere make change?
right-click project, properties, linker, system, change subsystem setting. you'll have change main() method winmain(). , you'd better create windows or there won't at.
Comments
Post a Comment