Hello,
I have 2 combo box, 1: cboTypePb, 2: cboMVS. The second combo box has .visible = false. I want it to turn true for a certain record in the first combo so this is what i've done.
Private Sub cboTypePb_Change()
If cboTypePb.Value = "Applications MVS" Then
cboTypePb.SetFocus
[MVS Application_Label].Visible = True
cboMVS.Visible = True
chkExplicationMVS.Visible = True
Else
cboTypePb.SetFocus
[MVS Application_Label].Visible = False
cboMVS.Visible = False
chkExplicationMVS.Visible = False
End If
This dosen't work, do you have any ideeas?
Thanks
I have 2 combo box, 1: cboTypePb, 2: cboMVS. The second combo box has .visible = false. I want it to turn true for a certain record in the first combo so this is what i've done.
Private Sub cboTypePb_Change()
If cboTypePb.Value = "Applications MVS" Then
cboTypePb.SetFocus
[MVS Application_Label].Visible = True
cboMVS.Visible = True
chkExplicationMVS.Visible = True
Else
cboTypePb.SetFocus
[MVS Application_Label].Visible = False
cboMVS.Visible = False
chkExplicationMVS.Visible = False
End If
This dosen't work, do you have any ideeas?
Thanks