Hiding Backend

E

Emma

I was wondering, My database opens up the front end unfortunately the
navigation pane is still visible and the top row of access is still showing
up. I know I asked this before, but how do I get rid of these?
 
R

Ron2006

My experience so far has been that I have to do the following to get
it to work:

1) The first window that shows CANNOT have a related query or a bound
Table.

2) Press the little circle windows button on the top left of the
Access window.

3) Press the "Access Options" on the bottom right of the resulting
'dropdown'

4) Select "Current Database" - second one down

5) About half way down is a "Navagation Bar"

6) Un-Check the Display Navigation Pane.

7) Close and restart the application..

If the first form you show DOES NOT have a query or bound table, that
will probably do it.

In my case I had a dropdown for selecting a login name so I had to do
the following:

A) Created a smaller popup type of form that had only two buttons. One
says "exit Access" and it does an application.quit. The other button
has the following code in the onClick event:

Me.Visible = False
DoCmd.OpenForm "Menu - Main" - this should be the name of the
first form it used to open.
DoCmd.Maximize

This seems to solve the problem for me.

Ron Nemec
 
Top