#1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 65
Default access menu

How do i access "About Microsoft Excel" from the Help menu bar?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default access menu

Try

Sub test()
Application.CommandBars("Worksheet Menu Bar").FindControl _
(ID:=927, Recursive:=True).Execute
End Sub

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



--
Regards Ron de Bruin
http://www.rondebruin.nl



"ernie" wrote in message ...
How do i access "About Microsoft Excel" from the Help menu bar?



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 65
Default access menu

I have this software installed with excel. its call ExcelShield. i need to
create a code to access "About" from ExcelShield menu bar.

I'm trying the code below but it does not work:

Sub test()
Application.CommandBars("Worksheet Menu
Bar").Controls.Application.CommandBars("Excel&Shie ld").Caption = _
"A&bout"
End Sub


--
help a friend help you


"Ron de Bruin" wrote:

Try

Sub test()
Application.CommandBars("Worksheet Menu Bar").FindControl _
(ID:=927, Recursive:=True).Execute
End Sub

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



--
Regards Ron de Bruin
http://www.rondebruin.nl



"ernie" wrote in message ...
How do i access "About Microsoft Excel" from the Help menu bar?




  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default access menu

Adapt this example

Dim winHelpMenu As CommandBarControl
Set winHelpMenu = Application.CommandBars("Worksheet Menu Bar").Controls("Help")
winHelpMenu.Controls("About Microsoft Office Excel").Execute


--
Regards Ron de Bruin
http://www.rondebruin.nl



"ernie" wrote in message ...
I have this software installed with excel. its call ExcelShield. i need to
create a code to access "About" from ExcelShield menu bar.

I'm trying the code below but it does not work:

Sub test()
Application.CommandBars("Worksheet Menu
Bar").Controls.Application.CommandBars("Excel&Shie ld").Caption = _
"A&bout"
End Sub


--
help a friend help you


"Ron de Bruin" wrote:

Try

Sub test()
Application.CommandBars("Worksheet Menu Bar").FindControl _
(ID:=927, Recursive:=True).Execute
End Sub

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



--
Regards Ron de Bruin
http://www.rondebruin.nl



"ernie" wrote in message ...
How do i access "About Microsoft Excel" from the Help menu bar?






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
Menu access problem Mr. Dob Excel Discussion (Misc queries) 0 June 7th 07 07:35 PM
Hotkey menu access on the MAC ShaneDevenshire Excel Discussion (Misc queries) 3 May 31st 07 05:12 AM
access menu ernie Excel Programming 4 August 10th 06 10:04 PM
I have no access to the "tabs" on the options menu of excel Noel W Excel Discussion (Misc queries) 1 July 14th 05 02:24 AM
Access menu item from VBS elidag Excel Programming 1 November 13th 03 04:22 PM


All times are GMT +1. The time now is 07:22 AM.

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

About Us

"It's about Microsoft Excel"