Jan 17, 2005 #1 handlebars Technical User Joined Feb 18, 2003 Messages 270 Location GB I cant find how within code how to make the access switchboard (that contains objects such as tables and forms, etc) invisable. Can anyone enlighten me? Andrew
I cant find how within code how to make the access switchboard (that contains objects such as tables and forms, etc) invisable. Can anyone enlighten me? Andrew
Jan 17, 2005 #2 SJMcAbney Programmer Joined Jan 16, 2005 Messages 112 Location GB If you just want to hide the form you can use: Me.Visible = False or Forms("MyForm").Visible = Fase or, even Forms!MyForm.Visible = False Stewart J. McAbney | Talk History Upvote 0 Downvote
If you just want to hide the form you can use: Me.Visible = False or Forms("MyForm").Visible = Fase or, even Forms!MyForm.Visible = False Stewart J. McAbney | Talk History
Jan 17, 2005 1 #3 RoyVidar Instructor Joined Jun 16, 2000 Messages 6,606 Location NO I wouldn't be surprised, if what handlebars is after, is this Show/Hide database window from code Roy-Vidar Upvote 0 Downvote
I wouldn't be surprised, if what handlebars is after, is this Show/Hide database window from code Roy-Vidar
Jan 17, 2005 #4 popalu Programmer Joined Apr 8, 2004 Messages 31 Location GB setup a new macro called AUTOEXEC and add the following two lines to the macro fields RUNCOMMAND (In command box select WINDOWHIDE) OPENFORM (Name of your first form to open) This runs on the database opening and hides the switchboard and opens your first form to view Upvote 0 Downvote
setup a new macro called AUTOEXEC and add the following two lines to the macro fields RUNCOMMAND (In command box select WINDOWHIDE) OPENFORM (Name of your first form to open) This runs on the database opening and hides the switchboard and opens your first form to view
Jan 20, 2005 Thread starter #5 handlebars Technical User Joined Feb 18, 2003 Messages 270 Location GB Many thanks to Roy - its all about using the correct terms - database window! All i wanted to do was hide it completely. Cheers for all your relies. Andrew Upvote 0 Downvote
Many thanks to Roy - its all about using the correct terms - database window! All i wanted to do was hide it completely. Cheers for all your relies. Andrew