excel vba question

J

joost

Hello,

How can you hide the option dialog box in Excel (2003) (Tools - Option).
Which VBA code can be used or is this possible through protection.

Thanks

Groet
Joost
 
B

Bob Phillips

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

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
J

joost

thanks


Bob Phillips said:
Application.Commandbars("Worksheet Menu
Bar").Controls("Tools").Controls("Options").Enabled = False

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my
addy)
 

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