how do i make form invisible in access 2003

  • Thread starter Thread starter osama ali
  • Start date Start date
O

osama ali

how do i make form invisible in access 2003 that i have one form call anthor
one and i want to switch between them without close first form or save data
of first form in the second form.

thank you all,
 
This code would run in the form that you want to make invisible:
Me.Visible = False

Or this code would run in another form:
Forms!NameOfFormToMakeInvisible.Visible = False
 
Back
Top