refresh event
C / C++ / MFC
4
Posts
2
Posters
0
Views
1
Watching
-
If the window you want to refresh was created by you, then you can take the handle of that window, and refresh it using RedrawWindow(); Like:
m_pEnhancedWindow->RedrawWindow();
//where m_pEnhancedWindow is the pointer to that window. I don't know how you are using the window. I mean if you have its handle, pointer etc. If this does not solve the problem then a little code would help. this is this.