View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Chip Pearson Chip Pearson is offline
external usenet poster
 
Posts: 7,247
Default custom menus in excel


In the application workbook, you can use the Activate and Deactivate
events in the ThisWorkbook code module to make the menus hidden when
your workbook is deactivated (user switches to another workbook) and
then restore their visibility when the workbook is activated (user
returns to your workbook).

' In the ThisWorkbook code module:
Private Sub Workbook_Activate()
' code to make menus/commandbars visible
End Sub

Private Sub Workbook_Deactivate()
' code to make menus/commandbars hidden
End Sub


Cordially,
Chip Pearson
Microsoft Most Valuable Professional
Excel Product Group, 1998 - 2009
Pearson Software Consulting, LLC
www.cpearson.com
(email on web site)



On Thu, 27 Aug 2009 11:50:02 -0700, siansun
wrote:

I have created an excel application with mostly custom menus using vba code.
The problem is that when the application is open, if i try to open a regular
excel file it also opens showing only the custom menus. is there a way to
(programmatically) get around this problem? and would i be able to do this in
vba code for the application containing the custom menus?

thanks