I have a dialog: dlg,
IDC_CONTENT: a edit box control of dlg
CString m_strContent : variable of IDC_CONTENT control

i can show text with this fuction: (instead i use UpdateData(0) )
dlg->GetDlgItem(IDC_CONTENT)->SetWindowText(m_strContent);

i have a edit box: IDC_COUNT with variable m_Count (integer)

How can I show number control of IDC_COUNT?

dlg->GetDlgItem(IDC_COUNT)->???

I don't understand this point

help me pls!
Thanks!