CString str;
if (IsDlgButtonChecked(IDC_RADIO1))
{
//MessageBox(_T("man"));
str = TEXT("man");
}
if (IsDlgButtonChecked(IDC_RADIO2))
{
//MessageBox(_T("man"));
str = TEXT("woman");
}
if (IsDlgButtonChecked(IDC_RADIO3))
{
//MessageBox(_T("man"));
str = TEXT("otherman");
}
MessageBox(str);






网友评论