Hi all,
Im new to MFC.
Now im learning how to use a combo box.
Question1:
I have a combo box with data value of (C++, Java, VB).
Whenever i choose one of the data value, I want the choosen data to be shown in an edit box.
How can i do it?
Below are part of my code.
void CComlistDlg::OnSelendokCombo1()
{
// TODO: Add your control notification handler code here
CString Answer;
Answer == m_combovalue; // m_combovalue is a CString that store value for Combo Box
m_ouput == Answer; // m_ouput is a CString that store value for Edit box
}
Thanks for the advance help
Rgds,
C_man