top Bar on ACCESS

  • Thread starter Thread starter TimH
  • Start date Start date
T

TimH

Is there a way to make invisable the top border of Access when the Access
window oppens?
 
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
 
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
 
Back
Top