Author Topic: EA Add-In - strong types  (Read 6595 times)

xkrystof

  • EA User
  • **
  • Posts: 29
  • Karma: +0/-0
  • I love YaBB 1G - SP1!
    • View Profile
EA Add-In - strong types
« on: May 19, 2008, 07:33:18 pm »
Hello,
I have developed several Add-Ins as a WSC (Windows Script Component) in Visual Basci Script. Unfortunately, I can not use strong types in WSC, so I can not write e.g.

Sub EA_OnNotifyContextItemModified(Repository As EA.Repository, GUID As String, ot As EA.ObjectType)

,but I can write only this

Sub  EA_OnNotifyContextItemModified(Repository, GUID, ot)

I know, that the C# enables using strong types, but is there any other solution (except of C#) how to write Add-Ins and use strong types?

thanks

Jan