Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 38
Default Disabling Specific Menu Bar Choices

I am creating a a shared work book and I don't want the users to have access
to the 'TOOLS' part of the menu bar. I know I can remove just this part of
the menu, but if I do, how will I access when I need to? Is there another
way?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10,593
Default Disabling Specific Menu Bar Choices

Just disable it

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

and enable when required.

--
---
HTH

Bob

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



"Jase4now" wrote in message
...
I am creating a a shared work book and I don't want the users to have
access
to the 'TOOLS' part of the menu bar. I know I can remove just this part
of
the menu, but if I do, how will I access when I need to? Is there another
way?



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 38
Default Disabling Specific Menu Bar Choices

Your response doesn't make complete sense to me. How do I get to the point
where I can access
Application.Commandbars("Worksheet Menu Bar").Controls("Tools").Enabled =
False


"Bob Phillips" wrote:

Just disable it

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

and enable when required.

--
---
HTH

Bob

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



"Jase4now" wrote in message
...
I am creating a a shared work book and I don't want the users to have
access
to the 'TOOLS' part of the menu bar. I know I can remove just this part
of
the menu, but if I do, how will I access when I need to? Is there another
way?




  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 23
Default Disabling Specific Menu Bar Choices

maybe you'll try to use a button hidden somewhere from user's eyes to
disable/enable the tools menu, eg: runing the below mentioned code

"Jase4now" wrote:

Your response doesn't make complete sense to me. How do I get to the point
where I can access
Application.Commandbars("Worksheet Menu Bar").Controls("Tools").Enabled =
False


"Bob Phillips" wrote:

Just disable it

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

and enable when required.

--
---
HTH

Bob

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



"Jase4now" wrote in message
...
I am creating a a shared work book and I don't want the users to have
access
to the 'TOOLS' part of the menu bar. I know I can remove just this part
of
the menu, but if I do, how will I access when I need to? Is there another
way?




  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 38
Default Disabling Specific Menu Bar Choices

Can somebody please, tell me where I need to type the code to disable the
TOOLS menu without removing it?

"catrrmg" wrote:

maybe you'll try to use a button hidden somewhere from user's eyes to
disable/enable the tools menu, eg: runing the below mentioned code

"Jase4now" wrote:

Your response doesn't make complete sense to me. How do I get to the point
where I can access
Application.Commandbars("Worksheet Menu Bar").Controls("Tools").Enabled =
False


"Bob Phillips" wrote:

Just disable it

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

and enable when required.

--
---
HTH

Bob

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



"Jase4now" wrote in message
...
I am creating a a shared work book and I don't want the users to have
access
to the 'TOOLS' part of the menu bar. I know I can remove just this part
of
the menu, but if I do, how will I access when I need to? Is there another
way?





  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10,593
Default Disabling Specific Menu Bar Choices

Anywhere! Wherever you need that functionality!

--
---
HTH

Bob

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



"Jase4now" wrote in message
...
Can somebody please, tell me where I need to type the code to disable the
TOOLS menu without removing it?

"catrrmg" wrote:

maybe you'll try to use a button hidden somewhere from user's eyes to
disable/enable the tools menu, eg: runing the below mentioned code

"Jase4now" wrote:

Your response doesn't make complete sense to me. How do I get to the
point
where I can access
Application.Commandbars("Worksheet Menu Bar").Controls("Tools").Enabled
=
False

"Bob Phillips" wrote:

Just disable it

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

and enable when required.

--
---
HTH

Bob

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



"Jase4now" wrote in message
...
I am creating a a shared work book and I don't want the users to
have
access
to the 'TOOLS' part of the menu bar. I know I can remove just this
part
of
the menu, but if I do, how will I access when I need to? Is there
another
way?





  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 38
Default Disabling Specific Menu Bar Choices

Well, Either your formula is wrong, or telling me to put it anywhere is
wrong! I am not a programmer, so I don't understand what may be 'common
knowledge' to you. I am thinking that it must be put into the VB, but
everywhere I put it, it just turns red and does not work. Is their another
step I am missing?

"Bob Phillips" wrote:

Anywhere! Wherever you need that functionality!

--
---
HTH

Bob

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



"Jase4now" wrote in message
...
Can somebody please, tell me where I need to type the code to disable the
TOOLS menu without removing it?

"catrrmg" wrote:

maybe you'll try to use a button hidden somewhere from user's eyes to
disable/enable the tools menu, eg: runing the below mentioned code

"Jase4now" wrote:

Your response doesn't make complete sense to me. How do I get to the
point
where I can access
Application.Commandbars("Worksheet Menu Bar").Controls("Tools").Enabled
=
False

"Bob Phillips" wrote:

Just disable it

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

and enable when required.

--
---
HTH

Bob

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



"Jase4now" wrote in message
...
I am creating a a shared work book and I don't want the users to
have
access
to the 'TOOLS' part of the menu bar. I know I can remove just this
part
of
the menu, but if I do, how will I access when I need to? Is there
another
way?






  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default Disabling Specific Menu Bar Choices

See also
http://www.rondebruin.nl/menuid.htm

If you are new to VBA read this page
http://www.mvps.org/dmcritchie/excel/getstarted.htm


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Jase4now" wrote in message ...
Well, Either your formula is wrong, or telling me to put it anywhere is
wrong! I am not a programmer, so I don't understand what may be 'common
knowledge' to you. I am thinking that it must be put into the VB, but
everywhere I put it, it just turns red and does not work. Is their another
step I am missing?

"Bob Phillips" wrote:

Anywhere! Wherever you need that functionality!

--
---
HTH

Bob

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



"Jase4now" wrote in message
...
Can somebody please, tell me where I need to type the code to disable the
TOOLS menu without removing it?

"catrrmg" wrote:

maybe you'll try to use a button hidden somewhere from user's eyes to
disable/enable the tools menu, eg: runing the below mentioned code

"Jase4now" wrote:

Your response doesn't make complete sense to me. How do I get to the
point
where I can access
Application.Commandbars("Worksheet Menu Bar").Controls("Tools").Enabled
=
False

"Bob Phillips" wrote:

Just disable it

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

and enable when required.

--
---
HTH

Bob

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



"Jase4now" wrote in message
...
I am creating a a shared work book and I don't want the users to
have
access
to the 'TOOLS' part of the menu bar. I know I can remove just this
part
of
the menu, but if I do, how will I access when I need to? Is there
another
way?






Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Can I make a drop-down menu without cells containing the choices? Caeres Excel Discussion (Misc queries) 2 October 24th 08 04:34 AM
cycling through code based on menu choices [email protected] Excel Programming 3 December 24th 06 04:17 PM
Duplicate Menu Choices JCLSB Excel Discussion (Misc queries) 1 December 21st 05 01:33 AM
Format from menu will not offer options or choices? Tribeventure Excel Discussion (Misc queries) 0 December 6th 05 08:16 PM
icons for custom menu choices Tom Ogilvy Excel Programming 2 July 20th 03 10:25 PM


All times are GMT +1. The time now is 02:47 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"