I wanted to know how to write if statements to see if one or another check box is checked or not.
I have two check boxes. I wanted it to check to see if checkbox 1 is c
I'm making an assumption that you mean not checked. I don't have a C# compiler handy but:
if (checkbox1.Checked && !checkbox2.Checked) { } else if (!checkbox1.Checked && checkbox2.Checked) { }