repaint window in VC++
C / C++ / MFC
3
Posts
3
Posters
0
Views
1
Watching
-
How to repaint window in VC++ so that while scrolling the displayed image it can be viewed properly?
I usually use InvalidateRect(hwnd,0,0) You can use a rect as the second parameter if you want to make it more efficient.
rotter
-
How to repaint window in VC++ so that while scrolling the displayed image it can be viewed properly?
Did you use of void Invalidate(BOOL bErase = TRUE );?