G
Guest
I have a combo box that has a list of names, when one of the names is
selected this results in the closed check box in a frame to be selected
otherwise the open check box is selected.
I have this working except that if a name is selected by accident and it is
removed the closed check box is still selected.
Please see simple code below
Private Sub Combo256_Click()
If Combo256 = "" Then
Frame130 = 1
Else
Frame130 = 2
End If
End Sub
selected this results in the closed check box in a frame to be selected
otherwise the open check box is selected.
I have this working except that if a name is selected by accident and it is
removed the closed check box is still selected.
Please see simple code below
Private Sub Combo256_Click()
If Combo256 = "" Then
Frame130 = 1
Else
Frame130 = 2
End If
End Sub