Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

I want my application to run even if it is minimized

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I wrote the code in OnPaint() method so that it will be called infinitely .
Whenever I am calling m_pMainWnd->ShowWindow(SW_SHOWMINIMIZED) the code written on OnPaint is not getting
executed . I want my code written in OnPaint to be executed when the application is minimized .
Please suggest me a similar method like OnPaint so that will get executed even if the application minimized
.
thanx .
 
simply, responding on message WM_MINIMIZE call UpdateWindow, or just send the message WM_PAINT. John Fill
1c.bmp


ivfmd@mail.md
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top