Hiding the Access background? (1 Viewer)

T

tcimello

Guest
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.
 
H

hm_cricha1

Guest
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

New member
Local time
Today, 04:15
Joined
Oct 10, 1999
Messages
5
Or Just go into the tool menu and select the sartup item, Then just uncheck the show database window check box.
Ed
 

Users who are viewing this thread

Top Bottom