Dialogs in a console app
In VC++ 6, is there any way to use dialogs in a console app? Or to put it another way, how can I get an HINSTANCE in a console app?
~~~~~~~~~~
Martee
ReactOS - an Open-source operating system compatible with Windows NT apps and drivers
To get the HINSTANCE just use:
HINSTANCE hInst = (HINSTANCE)GetModuleHandle (NULL);
Aldenar
HINSTANCE hInst = (HINSTANCE)GetModuleHandle (NULL);
Aldenar
This topic is closed to new replies.
Advertisement
Popular Topics
Advertisement
Recommended Tutorials
Advertisement