Dialog from console
C / C++ / MFC
3
Posts
2
Posters
0
Views
1
Watching
-
Is there any way to create and show a dialog in a C console program? Thanks in advance. Erik Hammar
Hi Erik, You should be able to show a dialog from a console application just the same way as in a GUI application. Create a dialog resource and implement a dialog procedure, then call one of the CreateDialogXXX (for a modeless dialog) or DialogBoxXXX (for a modal dialog). Cheers, Paolo.
-
Hi Erik, You should be able to show a dialog from a console application just the same way as in a GUI application. Create a dialog resource and implement a dialog procedure, then call one of the CreateDialogXXX (for a modeless dialog) or DialogBoxXXX (for a modal dialog). Cheers, Paolo.