C
customer7billion
It's probably really really basic but,
I have several checkboxes on my form, and wish to obtain a yes or no
value when they are checked. for example, I want to get something like
this:
Private Sub checkboxA_Click()
If 'checkboxA is selected' then
variableA = something
elseif variableA = something_else
end if
End Sub
I'm just not sure how to do the 'if checkboxA is selected' bit
thanks for any help i might recieve.
I have several checkboxes on my form, and wish to obtain a yes or no
value when they are checked. for example, I want to get something like
this:
Private Sub checkboxA_Click()
If 'checkboxA is selected' then
variableA = something
elseif variableA = something_else
end if
End Sub
I'm just not sure how to do the 'if checkboxA is selected' bit
thanks for any help i might recieve.