Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I need some functionality in an addin.
When a certain procedure in the addin in executed, it should check for the existence of the a procedure with a fixed name in the active workbook, and if the procedure is defined, it should execute it. So: how can the addin check if the ActiveWorkbook has a procedure of a given name? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Something like?
On Error GoTo err_label_1 Debug.Print Application.Run("'QDE.xla'!GetDatePriority") Debug.Print "Found" Exit Sub err_label_1: Debug.Print "Not Found" -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "Erich Neuwirth" wrote in message ... I need some functionality in an addin. When a certain procedure in the addin in executed, it should check for the existence of the a procedure with a fixed name in the active workbook, and if the procedure is defined, it should execute it. So: how can the addin check if the ActiveWorkbook has a procedure of a given name? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Finding a Workbook based on a Cell information in another Workbook | Excel Worksheet Functions | |||
does a value exist in another workbook | Excel Worksheet Functions | |||
Help - Does value exist in range of CLOSED workbook? | Excel Worksheet Functions | |||
Question relating to Named Ranges which exist in another workbook. | Excel Discussion (Misc queries) | |||
Updating master workbook from source that may/may not exist | Excel Worksheet Functions |