Link to home
Start Free TrialLog in
Avatar of Greg989
Greg989

asked on

MSAccess VBA code to hide a form from view after data entry has been made

I've created an MSAccess 2003 form that I use to drive a select query for subsequent use.  I'd like to temporarily hid the referenced form while the subsequent activities are performed.  Can anyone provide a VBA code (or other) suggestion as to how I can accomplish this.
ASKER CERTIFIED SOLUTION
Avatar of Rey Obrero (Capricorn1)
Rey Obrero (Capricorn1)
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Or, if you want to hide the current form, just
Me.Visible = False
Avatar of Greg989
Greg989

ASKER

Thanks for the fast response.  Just what I needed.