Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a macro assigned to a toolbar button. Its asigned
with full reference (i.e. Workbookname!MacroName). When user saves the workbook with a different name, it cann't find the macro. What can I do so that its reference is "Thisworkbook" or any other solutions...Thanks |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I use something like this:
myCtrl.OnAction = ThisWorkbook.Name & "!MacroName" If that doesn't work for you, you may want to copy and paste from your code. I bet you don't really use: Workbookname!MacroName. J wrote: I have a macro assigned to a toolbar button. Its asigned with full reference (i.e. Workbookname!MacroName). When user saves the workbook with a different name, it cann't find the macro. What can I do so that its reference is "Thisworkbook" or any other solutions...Thanks -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi, i had a similar question yesterday and Ian Ogilvy kindly donate
this information. Hope it helps! Simon Here's the code! applicaton.CommandBars("Custom1").Controls("ABCD") .OnAction = "Macro1" assuming macro1 is in the workbook where the above is run. so you would set up a line for each control on you custom commandbar. do it in the workbook_open event. It is often useful to have you code actually build the commandbar. Here is an article about creating commandbars with code: http://msdn.microsoft.com/library/techart/ofcmdbar.htm other references: http://support.microsoft.com/defaul...amp;Product=xlw How to customize menus and menu bars in Excel http://support.microsoft.com/?id=159619 XL97: Sample Macros for Customizing Menus and Submenus http://support.microsoft.com/?id=213550 XL2000: Sample Macros for Customizing Menus and Submenus http://support.microsoft.com/defaul...kb;en-us;166755 File Title: Customizing Menu Bars, Menus, and Menu Items i Microsoft(R) Excel 97 File Name: WE1183.EXE File Size: 58041 bytes File Date: 06/20/97 Keywords: kbfile kbappnote Description: This Application Note can help you learn techniques fo writing Visual Basic(R) for Applications code to customize menus in Microsof Excel 97. This Application Note contains code examples that you can use wit the following elements: menu bars, menus, menu items, submenus, an shortcut menus -- Message posted from http://www.ExcelForum.com |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
macro-file could not be found | Excel Discussion (Misc queries) | |||
Macro cannot be found, but it is there? | Excel Discussion (Misc queries) | |||
Macro cannot be found | Excel Discussion (Misc queries) | |||
macro not found | Excel Programming | |||
Found a macro, but don't know how to use it | Excel Programming |