tcimello
10-15-1999, 04:48 AM
Is there any way to hide the Microsoft Access screen when you are running a database, as you would the database window. I would like just the forms to be visible on the screen, not the Microsoft Access Window.
|
View Full Version : Hiding the Access background? tcimello 10-15-1999, 04:48 AM Is there any way to hide the Microsoft Access screen when you are running a database, as you would the database window. I would like just the forms to be visible on the screen, not the Microsoft Access Window. hm_cricha1 10-18-1999, 08:08 AM Put this code in the on open properties of your startup form, to hide the database window. Sub SetStartupProperties() ChangeProperty "StartupShowDBWindow", dbBoolean, False End Sub Caz Ed 10-21-1999, 06:31 PM Or Just go into the tool menu and select the sartup item, Then just uncheck the show database window check box. Ed |