Make a cbobox not visible, with a condition

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

if [frmPos2] isOpen then
cbo65 visible = true
else
cbo65 visible = false

can you show me how to code this correctly

thanks, edward keith
 
Assuming Access 2000 or later ...

If CurrentProject.AllForms("frmPos2").IsLoaded Then
cbo65.Visible = True
Else
cbo65.Visible = False
End If
 
thanks again
edward keith
Brendan Reynolds said:
Assuming Access 2000 or later ...

If CurrentProject.AllForms("frmPos2").IsLoaded Then
cbo65.Visible = True
Else
cbo65.Visible = False
End If

--
Brendan Reynolds

edward keith said:
if [frmPos2] isOpen then
cbo65 visible = true
else
cbo65 visible = false

can you show me how to code this correctly

thanks, edward keith
 
Back
Top