I have a CStatic control that I would like to set its text at runtime (computing a Fibonacci number)

Class TXT:public CStatic
{
  private:
    CString m_str;
  public:
    SetText(const CString& str)
    {
       m_str=str;
       RedrawWindow();
    }
////other methods OnPaint etc 
}
//someclass that contains 
{
////....
TXT m_res;
///....

}
UINT threadProc(LPVOID lp)
{
   //computing Fibonacci
   p->m_res.SetText("resultTXT"); 
}

My problem is the output string result overwrites each other; the text's not erased once a new output comes.

WHat else should I do to fix this problem ?

link|improve this question
Are you calling RedrawWindow exactly as you show here (no arguments), or are you in fact passing some arguments, omitted to shorten the code shown here? – eran Aug 3 '11 at 7:04
It might be other problems with threads as David Heffernan sugeested but it seems that the problem you are complaining about it might be a problem with the control painting. Are you overwritting the OnPaint or OnEraseBkgnd methods? Could you add the rest of the code? – Javier De Pedro Aug 3 '11 at 10:40
feedback

1 Answer

My guess is that you are creating the window in the main thread (the GUI thread), but then calling functions on that window from the worker thread. That would be against the rules since windows have affinity to the thread on which they are created.

Make sure that all your API calls that use the window handle are made from the main thread. Note that SendMessage() calls are marshalled onto the correct thread, but in any case, for performance reasons, they are also better to be send from the main thread.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.