Open a form while hiding Access DB interface.

J

John

Hi,

About Access 2007 under Windows XP Pro :
When the user clicks on the DB file to open it,
I want Access to open a specific form - this is working -
but I want also no display at all of the Access interface.

i.e, the user shall not be able to modify anything
outside the opened form, the opened form shall be
the only interface he/she could see and use.

Several searches on the internet were unlucky.
Can someone please help on this topic ?

TIA
 
J

John

"John" :
When the user clicks on the DB file to open it,
I want Access to open a specific form - this is working -
but I want also no display at all of the Access interface.

The following code does *almost* work,
unfortunately the Access menu is still there,
allowing the user to mess with ...


'-------------------------------------
Public Sub HideDb()
DoCmd.SelectObject acTable, , True
DoCmd.RunCommand acCmdWindowHide
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top