how do i make form invisible in access 2003

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,
 
K

Ken Snell \(MVP\)

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
 
Top