Hiding the Access background?

  • Thread starter Thread starter tcimello
  • Start date Start date
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.
 
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
 
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

Back
Top Bottom