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

C / C++ / MFC

 
AnswerRe: Problem with FindNextChangeNotification Pin
Dan Neely8-Feb-06 9:51
Dan Neely8-Feb-06 9:51 
GeneralRe: Problem with FindNextChangeNotification Pin
David Crow8-Feb-06 10:16
David Crow8-Feb-06 10:16 
GeneralRe: Problem with FindNextChangeNotification Pin
Dan Neely8-Feb-06 11:41
Dan Neely8-Feb-06 11:41 
GeneralRe: Problem with FindNextChangeNotification Pin
David Crow9-Feb-06 2:51
David Crow9-Feb-06 2:51 
QuestionTree control bug? Pin
Gary Wheeler8-Feb-06 4:24
Gary Wheeler8-Feb-06 4:24 
AnswerRe: Tree control bug? Pin
David Crow8-Feb-06 4:45
David Crow8-Feb-06 4:45 
GeneralRe: Tree control bug? Pin
Gary Wheeler8-Feb-06 4:56
Gary Wheeler8-Feb-06 4:56 
AnswerRe: Tree control bug? Pin
James R. Twine8-Feb-06 4:59
James R. Twine8-Feb-06 4:59 
   I have found painting-related problems to be easy to find in the new Common controls.

   Usually, before any larger operation, such as a complete dump and refill of something like a TreeView Control or a ListView Control, I do the following for both performance and painting/update reasons:

    m_tvTree.SetRedraw( FALSE );<br />
    // Delete And Insert Items...<br />
    m_tvTree.SetRedraw( TRUE );<br />
    m_tvTree.RedrawWindow();


   That last part, RedrawWindow(...), usually handles any mis-paints that may have occured.  I would suggest trying that function after your delete and reinsert steps.

   Peace!


-=- James
If you think it costs a lot to do it right, just wait until you find out how much it costs to do it wrong!
Tip for new SUV drivers: Professional Driver on Closed Course does not mean your Dumb Ass on a Public Road!
DeleteFXPFiles & CheckFavorites
(Please rate this post!)
GeneralRe: Tree control bug? Pin
Gary Wheeler8-Feb-06 5:07
Gary Wheeler8-Feb-06 5:07 
AnswerRe: Tree control bug? Pin
Jack Puppy8-Feb-06 7:09
Jack Puppy8-Feb-06 7:09 
GeneralRe: Tree control bug? Pin
Gary Wheeler8-Feb-06 7:26
Gary Wheeler8-Feb-06 7:26 
QuestionHow to automatically start functioning Dailog based application Pin
Aqueel8-Feb-06 4:24
Aqueel8-Feb-06 4:24 
AnswerRe: How to automatically start functioning Dailog based application Pin
Maximilien8-Feb-06 4:33
Maximilien8-Feb-06 4:33 
GeneralRe: How to automatically start functioning Dailog based application Pin
Ryan Binns8-Feb-06 17:20
Ryan Binns8-Feb-06 17:20 
AnswerRe: How to automatically start functioning Dailog based application Pin
David Crow8-Feb-06 4:40
David Crow8-Feb-06 4:40 
AnswerRe: How to automatically start functioning Dailog based application Pin
Aqueel8-Feb-06 5:45
Aqueel8-Feb-06 5:45 
QuestionThunking issue Pin
indra208-Feb-06 3:56
indra208-Feb-06 3:56 
QuestionService can´t create objects Pin
Dyrl8-Feb-06 3:26
Dyrl8-Feb-06 3:26 
QuestionRe: Service can´t create objects Pin
David Crow8-Feb-06 3:32
David Crow8-Feb-06 3:32 
AnswerRe: Service can´t create objects Pin
Dyrl8-Feb-06 3:38
Dyrl8-Feb-06 3:38 
AnswerRe: Service can´t create objects Pin
Taka Muraoka8-Feb-06 3:42
Taka Muraoka8-Feb-06 3:42 
GeneralRe: Service can´t create objects Pin
Dyrl8-Feb-06 4:03
Dyrl8-Feb-06 4:03 
GeneralRe: Service can´t create objects Pin
Taka Muraoka8-Feb-06 4:07
Taka Muraoka8-Feb-06 4:07 
GeneralRe: Service can´t create objects Pin
David Crow8-Feb-06 4:21
David Crow8-Feb-06 4:21 
GeneralRe: Service can´t create objects Pin
Taka Muraoka8-Feb-06 4:26
Taka Muraoka8-Feb-06 4:26 

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.