Unchecked checkBox event?

Er, this is rather embarrassing.... Though I've tried everything :l

You can for Ex. do this :
if(checkBox1->Checked)

though in the event that you want it to execute an action after being unchecked, I tried to use
if(checkBox1->Unchecked)
and for some reason it didn't work. I've looked around but I can't really find anything, any ideas?
Last edited on
Bump
are you using CLI?
I am.
AFAIK, TCheckBox does not have an 'Unchecked' property.
Then how would I call an unchecked checkbox?
maybe using negation operator :D
if(!checkBox1->Checked)
@codykiddy Thanks a bunch!
Topic archived. No new replies allowed.