Click here to Skip to main content
15,900,511 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Rich Editor Pin
tctan10-May-06 17:14
tctan10-May-06 17:14 
QuestionRich edit view speed Pin
Andrew Hain10-May-06 0:35
Andrew Hain10-May-06 0:35 
QuestionPrevent Treeview from blinking when updating Pin
vivelesours10-May-06 0:14
vivelesours10-May-06 0:14 
AnswerRe: Prevent Treeview from blinking when updating Pin
Nibu babu thomas10-May-06 0:18
Nibu babu thomas10-May-06 0:18 
GeneralRe: Prevent Treeview from blinking when updating Pin
vivelesours10-May-06 0:21
vivelesours10-May-06 0:21 
GeneralRe: Prevent Treeview from blinking when updating Pin
Andrew Hain10-May-06 0:48
Andrew Hain10-May-06 0:48 
GeneralRe: Prevent Treeview from blinking when updating Pin
vivelesours10-May-06 0:55
vivelesours10-May-06 0:55 
GeneralRe: Prevent Treeview from blinking when updating Pin
kakan10-May-06 1:15
professionalkakan10-May-06 1:15 
Maybe you should call SetRedraw(TRUE) only when there is a change in the tree.

Something like this:

OnTimer()
{
BOOL bChanged = FALSE;
GetTreeCtrl().SetRedraw(FALSE);

while (something to add or update)
{
bChanged = TRUE;
//Add Trace item in the ListCtrl/Treeview
AddOrUpdate (SetItem or InsertItem)
}

//Allow to draw all modified lines in the ListCtrl
GetTreeCtrl().SetRedraw(bChanged);
}


-- modified at 7:49 Wednesday 10th May, 2006
GeneralRe: Prevent Treeview from blinking when updating Pin
vivelesours10-May-06 2:09
vivelesours10-May-06 2:09 
GeneralRe: Prevent Treeview from blinking when updating Pin
Andrew Hain10-May-06 1:43
Andrew Hain10-May-06 1:43 
GeneralRe: Prevent Treeview from blinking when updating Pin
vivelesours10-May-06 2:22
vivelesours10-May-06 2:22 
GeneralRe: Prevent Treeview from blinking when updating Pin
Member 39402069-Jul-09 1:16
Member 39402069-Jul-09 1:16 
Questionquestion. Pin
mush hashor10-May-06 0:02
mush hashor10-May-06 0:02 
AnswerRe: question. Pin
Cedric Moonen10-May-06 0:13
Cedric Moonen10-May-06 0:13 
Questionsocket question: receive part of what is sent Pin
followait9-May-06 23:36
followait9-May-06 23:36 
Questionsocket question: receive part of what is send Pin
followait9-May-06 23:35
followait9-May-06 23:35 
AnswerRe: socket question: receive part of what is send Pin
Scorpio10-May-06 2:01
Scorpio10-May-06 2:01 
Questionwindows task manager Pin
ash_cool9-May-06 23:16
ash_cool9-May-06 23:16 
GeneralNo Subject Pin
Maxwell Chen9-May-06 23:49
Maxwell Chen9-May-06 23:49 
GeneralRe: windows task manager Pin
Naveen9-May-06 23:54
Naveen9-May-06 23:54 
GeneralNo Subject Pin
Maxwell Chen9-May-06 23:57
Maxwell Chen9-May-06 23:57 
GeneralRe: windows task manager Pin
Cedric Moonen10-May-06 0:01
Cedric Moonen10-May-06 0:01 
GeneralRe: windows task manager Pin
Maxwell Chen10-May-06 0:03
Maxwell Chen10-May-06 0:03 
GeneralRe: windows task manager Pin
Nibu babu thomas10-May-06 0:00
Nibu babu thomas10-May-06 0:00 
GeneralRe: windows task manager Pin
Maxwell Chen10-May-06 0:09
Maxwell Chen10-May-06 0:09 

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.