Click here to Skip to main content
15,909,591 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: CCheckListBox in release mode, Windows XP in Windows classic theme Pin
bob1697211-Jul-08 7:42
bob1697211-Jul-08 7:42 
GeneralRe: CCheckListBox in release mode, Windows XP in Windows classic theme Pin
tsvdevteam11-Jul-08 9:03
tsvdevteam11-Jul-08 9:03 
GeneralRe: CCheckListBox in release mode, Windows XP in Windows classic theme Pin
Bram van Kampen12-Jul-08 14:47
Bram van Kampen12-Jul-08 14:47 
QuestionUpdate only a particial area of a View with UpdateAllViews(...) Pin
CrocodileBuck11-Jul-08 4:55
CrocodileBuck11-Jul-08 4:55 
AnswerRe: Update only a particial area of a View with UpdateAllViews(...) Pin
Mark Salsbery11-Jul-08 5:05
Mark Salsbery11-Jul-08 5:05 
AnswerRe: Update only a particial area of a View with UpdateAllViews(...) Pin
led mike11-Jul-08 5:18
led mike11-Jul-08 5:18 
GeneralRe: Update only a particial area of a View with UpdateAllViews(...) Pin
CrocodileBuck11-Jul-08 5:27
CrocodileBuck11-Jul-08 5:27 
GeneralRe: Update only a particial area of a View with UpdateAllViews(...) Pin
Mark Salsbery11-Jul-08 5:31
Mark Salsbery11-Jul-08 5:31 
GeneralRe: Update only a particial area of a View with UpdateAllViews(...) Pin
CrocodileBuck11-Jul-08 5:46
CrocodileBuck11-Jul-08 5:46 
GeneralRe: Update only a particial area of a View with UpdateAllViews(...) Pin
Mark Salsbery11-Jul-08 6:05
Mark Salsbery11-Jul-08 6:05 
GeneralRe: Update only a particial area of a View with UpdateAllViews(...) Pin
CrocodileBuck11-Jul-08 6:16
CrocodileBuck11-Jul-08 6:16 
GeneralRe: Update only a particial area of a View with UpdateAllViews(...) Pin
Mark Salsbery11-Jul-08 6:29
Mark Salsbery11-Jul-08 6:29 
GeneralRe: Update only a particial area of a View with UpdateAllViews(...) Pin
CrocodileBuck11-Jul-08 6:33
CrocodileBuck11-Jul-08 6:33 
GeneralRe: Update only a particial area of a View with UpdateAllViews(...) Pin
Mark Salsbery11-Jul-08 6:36
Mark Salsbery11-Jul-08 6:36 
GeneralRe: Update only a particial area of a View with UpdateAllViews(...) Pin
CrocodileBuck11-Jul-08 6:44
CrocodileBuck11-Jul-08 6:44 
GeneralRe: Update only a particial area of a View with UpdateAllViews(...) Pin
Mark Salsbery11-Jul-08 6:48
Mark Salsbery11-Jul-08 6:48 
GeneralRe: Update only a particial area of a View with UpdateAllViews(...) Pin
CrocodileBuck11-Jul-08 6:52
CrocodileBuck11-Jul-08 6:52 
GeneralRe: Update only a particial area of a View with UpdateAllViews(...) Pin
Mark Salsbery11-Jul-08 6:59
Mark Salsbery11-Jul-08 6:59 
Only you know what's going on in your views.

The text data must be coming from somewhere...
Change it and update the views!
And make sure changing it doesn't already cause an update implicitly,
or you still won't see anything.

If the view is a window not in your control (where you don't do the painting,
like an edit control), then you may not have control over updating regions of
the window.

If you are doing the painting in your view, look at the invalid rect in the WM_PAINT
handler - you should see that your update rect is there. What you do with that info in
your painting code is up to you.

Mark

Mark Salsbery
Microsoft MVP - Visual C++

Java | [Coffee]

GeneralRe: Update only a particial area of a View with UpdateAllViews(...) Pin
CrocodileBuck11-Jul-08 7:04
CrocodileBuck11-Jul-08 7:04 
GeneralRe: Update only a particial area of a View with UpdateAllViews(...) Pin
led mike11-Jul-08 8:52
led mike11-Jul-08 8:52 
GeneralRe: Update only a particial area of a View with UpdateAllViews(...) Pin
Mark Salsbery11-Jul-08 9:01
Mark Salsbery11-Jul-08 9:01 
GeneralRe: Update only a particial area of a View with UpdateAllViews(...) [modified] Pin
Bram van Kampen12-Jul-08 14:56
Bram van Kampen12-Jul-08 14:56 
GeneralRe: Update only a particial area of a View with UpdateAllViews(...) Pin
Bram van Kampen12-Jul-08 15:02
Bram van Kampen12-Jul-08 15:02 
QuestionRe: Update only a particial area of a View with UpdateAllViews(...) Pin
David Crow11-Jul-08 7:29
David Crow11-Jul-08 7:29 
AnswerRe: Update only a particial area of a View with UpdateAllViews(...) Pin
CrocodileBuck11-Jul-08 23:12
CrocodileBuck11-Jul-08 23:12 

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.