I wonder in visual studio, what would be the code to acquire the value from the Checkbox. Say, if checked, value=1; if not, value=0. I know for radio button, I can automatically assign the value. But what about the checkbox? Do I even need to register a user control and write a case function such as
_checkResult = value
Select Case _checkResult
Case 1
CheckBoxA.Checked = True
Case 0
CheckBoxA.Checked = False
End Select
Much appreciated for any help:)