Msdn says:
"Invalidates the entire client area of CWnd." What does it mean?
Let's say your code makes a change to your data. Instead of writing special
code to update those changes displayed in your window, a better approach is
to write code to paint your window in just one location. After you've made
the changes, you could call Invalidate() to cause your painting code to be
called.
--
Jonathan Wood
SoftCircuits Programming
http://www.softcircuits.com
http://www.softcircuits.com/blog/
"jklioe" <ranu...@gmail.com> wrote in message
news:41dc156f-9c81-462a...@s38g2000prg.googlegroups.com...
It tells the program that what's drawn in the client area is no longer
valid and it has to be redrawn when the next WM_PAINT is received.
Thanks !!!!!!!!!!!!!!!!