View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Eric[_20_] Eric[_20_] is offline
external usenet poster
 
Posts: 31
Default Procedure calling syntax

Merci Jacques pour les precisions...

"Jacques ALARDET" wrote in message
...
Hello

First, OnAction:="procédurename" is suffisant
Second, You call another procédure in another Workbook, with two solution
1. Application.run "workbook!procédudurename"
2. Call [Projectname].[modulename].procédurename

J a c q u e s

"Eric" a écrit dans le message de
...
Hello,

I have an add-in that creates a menu from which I call procedures stored
in the same add-in using the syntax: .OnAction = ThisWorkbook.Name &
"!procedurename".
What would be the syntax if I where to call a procedure stored in

another
loaded add-in, let's say in module3?

Thank you.

Eric