
I have GP2010 and want to create VS.net addin. I have intalled GP2010 VS Tools SDK. Created a new project in VS.Net for GP, without writing any code, just build project gave me error Type 'IDexterityAddIn' is not defined
not sure but something to do with this below
Imports
Microsoft.Dexterity.Bridge
Imports
Microsoft.Dexterity.Applications
*This post is locked for comments
I have the same question (0)Dharmesh,
The code should look like the example below, and you just simply add what you need to it:
Imports Microsoft.Dexterity.Bridge
Imports Microsoft.Dexterity.Applications
___________________________________________________
Public Class YourClass
Implements IdexterityAddIn
Public Sub Initialize() Implements Microsoft.Dexterity.Bridge.IdexterityAddIn.Initialize
End Sub
End Class