Access Window

  • Thread starter Thread starter depawl
  • Start date Start date
D

depawl

Is it possible to hide the main access window (the one with the title
bar, tool bars, etc.) when running an access program? I've been able to
hide the database window but wondered if it was possible to hide this
window also?
 
Is all of that code supposed to go in the On Open event of the form? I'm
trying to insert it in the Switchboard form and there is already code in
there and when I insert this code it gives me an error message: "End Sub
expected".
With a bit more clarification I can probably get it.
thanks.
 
You may find it best to place the code in a standard module.
Then your form only needs to call:
fSetAccessWindow(SW_HIDE)
 
Back
Top