About Cursor blinking : Plz Help
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
-
I developed an application ,In which it popup messages to a respective time. I used OnTimer() function ., When I move my mouse cursor on to the application , It starts blinking. How to avoid this Blinking. Plz reply urgently. Praveen Chowdam Kumar
Message boxes are Modal. You must dismiss them if you want to go back to the application. The solution is to create your own "Custom Message Box", which is Modeless, created on-the-fly using Create(IDD_MY_BOX,this); Shown, using ShowWindow(SW_SHOW); etc. Then you can click on the application window also while the message box is present. I hope I understood your question. this is this.