making the worksheet menu bar not visible

M

matt dunbar

hi

because i have provided all relevant functions for my excel files as
button macro's i have therefore set all command bars as visible = false
in an "Open" macro

is it possible to also make the worksheet menu bar not visisble upon
opening a file - essentially making the Excel screen appear white except
for the application bar at the top and the open applications windows at
the bottom of the screen

also how would i make it visible again as part of the Before Close
macro?

thanks

matt

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
 
B

Bob Phillips

Hi Matt,

Application.Commandbars("Worksheet Menu Bar").Enabled = False

Set it to True at the end

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

hi

because i have provided all relevant functions for my excel files as
button macro's i have therefore set all command bars as visible = false
in an "Open" macro

is it possible to also make the worksheet menu bar not visisble upon
opening a file - essentially making the Excel screen appear white except
for the application bar at the top and the open applications windows at
the bottom of the screen

also how would i make it visible again as part of the Before Close
macro?

thanks

matt

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
 

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