Hi, I'm making a very simple program with check boxes and I want to the program to instantly close when the right combination of checkboxes are selected.
I tried using a code like that, using the property "checked"...
If Checkbox1.Checked := True and Checkbox5.Checked := True and Checkbox10.Checked := True and Checkbox12.Checked := True and Checkbox15.Checked := True then Exit;
But it's not working... It reject all the coding...
Please help me...