LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10
Default onAction events on NewMenu

Hi,

I have a custom menu that is re-created each time the excel app is
opened. This custom menu is part of an addin.

Since I need my menu to enable and disable menu items depending on
whether a workbook is open, or on other conditions such as the sheet
name, I thought by having a procedure which is triggered by the
NewMenu' onAction event, which would then check against these
conditions before the menu displays, would be perfect.

I tested the procedure before adding to the onAction event and it
worked fine, but when I placed this procedure on the NewMenu' onAction
event nothing worked.

I did have an Application level event which did this but it was erratic
ie did not work when there were no workbooks open.

Here's the code I have:

Sub CreateMenu()
'some code here
With NewMenu
.Caption = "Storyboard"
.onAction = "checkMyStatus"
End With
'menuitems added here ...
End Sub

Sub checkMyStatus()
Call checkWorkbook
Call checkWorksheet
End Sub

Sub checkWorkbook()
On Error Resume Next
If Workbooks.Count < 2 Then
CommandBars(1).Controls("Storyboard").Controls("&A dd
Topic").Enabled = False
CommandBars(1).Controls("Storyboard").Controls("&E dit Course
Info").Enabled = False
CommandBars(1).Controls("Storyboard").Controls("&T ools").Enabled =
False
CommandBars(1).Controls("Storyboard").Controls("&I nsert").Enabled =
False
CommandBars(1).Controls("Storyboard").Controls("&W ord
Count").Enabled = False
CommandBars(1).Controls("Storyboard").Controls("&P rint
Storyboard").Enabled = False
Else: Call EnableMenuItems
End If
End Sub

Sub checkWorksheet()
similar to checkWorkbook
End Sub

Sub EnableMenuItems()
On Error Resume Next
CommandBars(1).Controls("Storyboard").Controls("&A dd
Topic").Enabled = True
CommandBars(1).Controls("Storyboard").Controls("&E dit Course
Info").Enabled = True
CommandBars(1).Controls("Storyboard").Controls("&T ools").Enabled =
True
CommandBars(1).Controls("Storyboard").Controls("&I nsert").Enabled =
True
CommandBars(1).Controls("Storyboard").Controls("&W ord
Count").Enabled = True
CommandBars(1).Controls("Storyboard").Controls("&P rint
Storyboard").Enabled = True
End Sub

What am I doing wrong?

Thanks in advance.

Regards

T.

 
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
OnAction events intermittently failing on Shapes in Dialogsheets BizMark Excel Discussion (Misc queries) 0 August 12th 05 01:24 PM
OnAction? Pixie Excel Programming 2 July 1st 05 01:35 PM
NewMenu jrh Excel Programming 5 June 5th 04 11:56 PM
OnAction Jim Rech Excel Programming 1 September 5th 03 04:39 PM
OnAction Richard Yang Excel Programming 1 July 15th 03 01:37 PM


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

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"