I have a win32 program, when run manually, it display a message in WinMain, but when I put the same program under registry (Run) so that when the PC reboots, it will run automatically, the message will never appear (but the program run normally).

Anyone knows why there is a difference between starting the program manually (by clicking the exe file) and automatically (via Windows Registry)?

Thanks

Clement

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

It's probably too soon to display a message at the top of WinMain because you don't have a window yet. Can you wait until you receive your first WM_CREATE message?

link|improve this answer
Yes, problem solved. It is silly that the path I put in the registry is another program! – Clement Oct 29 '11 at 4:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.