I've built using VS 2008 C++ Release mode a Windows FLTK app (1.1.9) that suppresses the DOS console using the Linker commands /SUBSYSTEM:WINDOWS and /ENTRY:"mainCRTStartup".
The app executes fine, but when I "cancel" the app by clicking the X in the upper right corner of its Fl_Window, the app terminates. However, when I open TaskManager, it shows an entry for the app that is still executing (consuming 50% of the cpu cycles). I think it is related to running the app w/o a DOS WINDOW because when I build a release version the shows the DOS box in the background (/SUBSYSTEM:CONSOLE), I can terminate the FLTK Window app, but the DOS box remains active. It also must be canceled (click X) to terminate it. So, my question is how can I also terminate what I think is the invisible DOS Window when I terminate an FLTK app built linked with the /SUBSYSTEM:WINDOWS and /ENTRY:"mainCRTStartup" commands? _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

