B
Bob
I have made a Combo Box (ComboHelp) on my form that shows a Query (qryHelp)
from a table (tblStableSettings) field (Help Yes/No)
I have a Control (cmbHelp1ComName) that I am tring to make Visible/NoVisible
with this code below am I any where near it
Thanks for any help.....Bob
Private Sub Form_Open(Cancel As Integer)
If ComboHelp = True Then
cmbHelp1ComName.Visible = True
If ComboHelp = False Then
cmbHelp1ComName.Visible = False
End If
End If
End Sub
from a table (tblStableSettings) field (Help Yes/No)
I have a Control (cmbHelp1ComName) that I am tring to make Visible/NoVisible
with this code below am I any where near it
Thanks for any help.....Bob
Private Sub Form_Open(Cancel As Integer)
If ComboHelp = True Then
cmbHelp1ComName.Visible = True
If ComboHelp = False Then
cmbHelp1ComName.Visible = False
End If
End If
End Sub