top Bar on ACCESS

T

TimH

Is there a way to make invisable the top border of Access when the Access
window oppens?
 
A

Arvin Meyer [MVP]

If you have a borderless pop-up form which is maximized, it will cover the
Access window. Alternatively, you can change the icon and app title so that
it appears differently. Go to Tools >>> Startup
 
S

SoggyCashew

Private Sub Form_Load()
'*********************************************
'* Disables/Enables the menu bar *
'*********************************************
Application.CommandBars("Menu bar").Enabled = False '*****Disables Menu
Bar******
'Application.CommandBars("Menu bar").Enabled = True '*****Enables Menu
Bar*******

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