How can I create an exe file that, when executed, don't open any window?
( It just need to check something in the registry ).
Printable View
How can I create an exe file that, when executed, don't open any window?
( It just need to check something in the registry ).
You could create a Windows EXE, but in your InitInstance just read your registry stuff and return FALSE (i.e. don't create a window). Or you could create a console application.
MJA