I have two checkboxes and at least one of the boxes must be checked in order to pass the edit check but I can't get it to work properly!
If I check at least one of the boxes, the message still appears as if NEITHER box is checked. So it doesn't matter whether I check a box or not the message appears!
The syntax is on a Edit Button that also check for other things which all works. This is the only one that I can't get to work properly!
if ((form1.subPage3.subApply25.ckbQuest26dol.rawValue == 0) || (form1.subPage3.subApply25.ckbQuest26call.rawValue == 0)) {
xfa.host.messageBox("At lease one is required.", "Warning", "1")
exit;
}
Please help and thanks
George Kaiser