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 ?
RedrawWindowexactly 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