You are not signed in
Sign in
|
Join
Help
Summit Software
Home
Products
Blogs
Forums
Downloads
About Us
Contact Us
in
Current Tags
(Entire Site)
Search
Browse by Tags
All Tags
»
KeyNotFound
System.EventHandler<T> (1)
VSTA (1)
VSTA integration (1)
Re: Reg. AddIn EventData
Ramaraju, This depends on the version of VSTA you are using. >I am getting one error...The given key was not present in the dictionaryThis indicates that you are trying to pass a type that is not in your TypeInfrastructureManager (VSTA v 1) or your HostTypeMapProvider (VSTA v 2). The issue here is that you are trying ...
Re: Using types from System.Windows.Forms as arguments
Bjorn, System.Windows.Forms.Form is not serializable- therefore cannot be used in the proxy layer. System.Drawing.Graphics; however, should be okay, as you saw in the ShapeAppAdvancedCSharp sample. More basic types like System.String will also ...