i wanted to do the following:
"If RadioButton1 AND RadioButton2 ARE NOT checked, send message "Check one", else blabla"
i tried like this:
if((RBtnIsot->Checked==false) ,(RBtnIsoc->Checked==false) )
{
MessageDlg("Choose the simulation.", mtError, TMsgDlgButtons() << mbOK, 0);
}
else
{
...
but it didnt work, any ideas??
"If RadioButton1 AND RadioButton2 ARE NOT checked, send message "Check one", else blabla"
i tried like this:
if((RBtnIsot->Checked==false) ,(RBtnIsoc->Checked==false) )
{
MessageDlg("Choose the simulation.", mtError, TMsgDlgButtons() << mbOK, 0);
}
else
{
...
but it didnt work, any ideas??