Hi!
I will ask the state of a Checkbox...
This will not be working:
if (checkBox1::IsChecked = true)
continue
end-if.
What is wrong?
Best Regards
Bernd
#WPFCheckboxIsChecked
Hi!
I will ask the state of a Checkbox...
This will not be working:
if (checkBox1::IsChecked = true)
continue
end-if.
What is wrong?
Best Regards
Bernd
Hi!
I will ask the state of a Checkbox...
This will not be working:
if (checkBox1::IsChecked = true)
continue
end-if.
What is wrong?
Best Regards
Bernd
You need to include the Value property like:
if checkbox1::IsChecked::Value = true
set textBox1::Text to "checked"
else
set textBox1::Text to "not checked"
end-if
Hi!
I will ask the state of a Checkbox...
This will not be working:
if (checkBox1::IsChecked = true)
continue
end-if.
What is wrong?
Best Regards
Bernd
Thats it!
Many Thanks !!!
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.