Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hide a form

Status
Not open for further replies.

tina20

Programmer
Sep 1, 2000
16
US
Hi All,
I have a form that has the timer event in there and it is automatically open when the database is open.
Are there any way we can hide this form or make this form invisible?

Thanks a lot for all your help.
 
How are ya tina20 , , , , ,

Have a look at the [blue]Visible property[/blue] . . .

Calvin.gif
See Ya! . . . . . .
 
Hi Tina

Do you know where this form is opening from.

If it's a macro - it's called Autoexec
locate that form opening event
Click on it, You will see an option called Window Mode
in the bottom section of the macro window. Change this to Hidden.

If it's opening from code/module, then change the line to read like this.

DoCmd.OpenForm "YourFormName", , , , , acHidden

Hope this helps....



AccessGuruCarl
Programmers helping programmers
you can't find a better site.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top