Hide "Form View" toolbar

S

Sam Kuo

Hi,
Can I possibly make the "Form View" tool bar hidden at all time (while in
Form View) when the DB is opened from any computer?

Much thanks
 
W

Wes Peters

This code will make it not visible :
CommandBars("Form View").Visible = False

This code will disable it:
CommandBars("Form View").Enabled = False
 
S

Sam Kuo

Many thanks, Wes

Wes Peters said:
This code will make it not visible :
CommandBars("Form View").Visible = False

This code will disable it:
CommandBars("Form View").Enabled = False
 
Top