K
kirkm
There's a Form with 2 checkboxes and these Click events
Private Sub chkK1_Click()
chkK1 = True
chkA1 = False
Application.StatusBar = "chkK1"
End Sub
Private Sub chkA1_Click()
chkA1 = True
chkK1 = False
Application.StatusBar = "chkA1"
End Sub
The intent is, as chkK1 is ticked, chkA1 will bceome unticked and Vice
versa.
But it doesn't work! How can it NOT work ???
I've also tried .Value = and .Caption = and removed' = True'
(in case that was automatic), but still no go.
What am I doing wrong? At least the Application.StatusBar message
works !
Thanks - Kirk
Private Sub chkK1_Click()
chkK1 = True
chkA1 = False
Application.StatusBar = "chkK1"
End Sub
Private Sub chkA1_Click()
chkA1 = True
chkK1 = False
Application.StatusBar = "chkA1"
End Sub
The intent is, as chkK1 is ticked, chkA1 will bceome unticked and Vice
versa.
But it doesn't work! How can it NOT work ???
I've also tried .Value = and .Caption = and removed' = True'
(in case that was automatic), but still no go.
What am I doing wrong? At least the Application.StatusBar message
works !
Thanks - Kirk