Click here to Skip to main content
15,907,497 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Dynamic creation of button Pin
Cedric Moonen10-Feb-10 23:19
Cedric Moonen10-Feb-10 23:19 
QuestionPlz help to choose correct career path Pin
nknadim10-Feb-10 22:57
nknadim10-Feb-10 22:57 
AnswerRe: Plz help to choose correct career path Pin
AbhinavR10-Feb-10 23:20
AbhinavR10-Feb-10 23:20 
QuestionRe: Plz help to choose correct career path Pin
David Crow11-Feb-10 2:49
David Crow11-Feb-10 2:49 
AnswerRe: Plz help to choose correct career path Pin
nknadim11-Feb-10 3:16
nknadim11-Feb-10 3:16 
GeneralRe: Plz help to choose correct career path Pin
molesworth11-Feb-10 7:25
molesworth11-Feb-10 7:25 
QuestionNeed best approach to use a class inside other class Pin
Nandu_77b10-Feb-10 22:15
Nandu_77b10-Feb-10 22:15 
AnswerRe: Need best approach to use a class inside other class Pin
CPallini10-Feb-10 22:26
mveCPallini10-Feb-10 22:26 
GeneralRe: Need best approach to use a class inside other class Pin
Nandu_77b10-Feb-10 23:54
Nandu_77b10-Feb-10 23:54 
AnswerRe: Need best approach to use a class inside other class Pin
Avi Berger11-Feb-10 0:31
Avi Berger11-Feb-10 0:31 
QuestionControl Button Resize Pin
shiv@nand10-Feb-10 21:59
shiv@nand10-Feb-10 21:59 
AnswerRe: Control Button Resize Pin
«_Superman_»10-Feb-10 22:08
professional«_Superman_»10-Feb-10 22:08 
AnswerRe: Control Button Resize Pin
CPallini10-Feb-10 22:13
mveCPallini10-Feb-10 22:13 
QuestionCWnd and AcroPDF inproc issue Pin
kasi1410-Feb-10 9:13
kasi1410-Feb-10 9:13 
AnswerRe: CWnd and AcroPDF inproc issue Pin
Nish Nishant10-Feb-10 10:59
sitebuilderNish Nishant10-Feb-10 10:59 
GeneralRe: CWnd and AcroPDF inproc issue Pin
kasi1410-Feb-10 11:46
kasi1410-Feb-10 11:46 
QuestionError checking Pin
gregarion10-Feb-10 6:51
gregarion10-Feb-10 6:51 
QuestionRe: Error checking Pin
CPallini10-Feb-10 7:04
mveCPallini10-Feb-10 7:04 
AnswerRe: Error checking Pin
gregarion10-Feb-10 7:27
gregarion10-Feb-10 7:27 
GeneralRe: Error checking Pin
CPallini10-Feb-10 7:42
mveCPallini10-Feb-10 7:42 
QuestionCOleDispatchDriver Pin
trioum10-Feb-10 6:32
trioum10-Feb-10 6:32 
AnswerRe: COleDispatchDriver Pin
Bram van Kampen10-Feb-10 15:51
Bram van Kampen10-Feb-10 15:51 
GeneralRe: COleDispatchDriver Pin
trioum12-Feb-10 18:50
trioum12-Feb-10 18:50 
Questionpainting Pin
N Vamshi Krishna10-Feb-10 2:49
N Vamshi Krishna10-Feb-10 2:49 
AnswerRe: painting Pin
Hristo-Bojilov10-Feb-10 3:07
Hristo-Bojilov10-Feb-10 3:07 
Invalidate means forcing specific region asynchronous redraw.So use it when you want to repaint GUI region.For example calling InvalidateRect sends WM_PAINT to to region owner window queue.If you want immediately to send these messages you should call UpdateWindow or UpdateLayeredWindow depending on the used window type.
Validate means prevent specific region of window from being redrawn.For example you could call ValidateRect if you need to validate portion of region that needs repainting.You should call it before invalidating this region. Smile | :)
Life is a stage and we are all actors!

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.