View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
scotty[_2_] scotty[_2_] is offline
external usenet poster
 
Posts: 9
Default calling a method on an object created in a different addin


got it working...just needed to appreciate run takes a string. doh.

Dim result
Dim obj
Set obj = Application.Run("somemeth")
result = obj.method1 etc...