Hi, I have the following problem:
I have two check boxes on my dialog form, thir IDs are:
IDC_CHECK1
IDC_CHECK2
I want to make that when user check check box 1other chackbox becaome unchecked. This means that in the same time only one can be checked.
When I double click check box 1 I get into the fuction:
I tried with something like this:
ID_CHECK2=false;
but no succes.
Please help!
I have two check boxes on my dialog form, thir IDs are:
IDC_CHECK1
IDC_CHECK2
I want to make that when user check check box 1other chackbox becaome unchecked. This means that in the same time only one can be checked.
When I double click check box 1 I get into the fuction:
Code:
void CFIRDsgnDlg::OnBnClickedCheck1()
{
// TODO: Add your control notification handler code here
}
I tried with something like this:
ID_CHECK2=false;
but no succes.
Please help!