Browse Forum Posts by Tags
-
Hello I have tried you ShapeAppBasicMFCWithOMAgent sample and used is as a template for my own project. This is very nice thanks. However the sample does not support non-destructive debugging which I would like to add, unless there is a sample including this? Anyway I have tried to follow the ' How...
-
Goyalmayank, This is because delegates with more than 4 parameters are not supported. To get around this you may want to consider using something like the point structs in the ShapeAppSamples for the StartX/Y and NextX/Y cooridinates. Proxies for Managed Assemblies Delegates ProxyGen.exe generates a...
-
By JohnHMcCauley in VSTA Tech Discussions I have an Add-In that defines and implements a new class (extending the available object model dynamically) that another Add-In or the Host can make calls to. This is possible with MAF by implementing a two-way pipeline. Is this possible using VSTA? By Melody...
-
By Digvijay in VSTA Tech Discussions Hi, I would like to change the VSTA IDE icon for my application . Is there any way to achive this ? thank's Digvijay, No, icon has to be the MS VSTA icon. What are you trying to accomplish by changing this? The title of the IDE is customizable. Here is some links...
-
By wirecad in VSTA Tech Discussions I notice some odd behaviour in the VSTA IDE when debugging. If an exception is encountered outside of a try/catch block the code falls through the block into some unknown state. No feedback is given and debugging must be stopped and the host app restarted to rehook...
-
Gorlikov, You can use VSTA in a Delphi application. The Delphi application would either expose a COM API or a .NET API. Integrating VSTA is not intrusive in your application, the integration remains largely separate. We do not have a COM sample for VSTA v 2 at this time, but I will get one up later this...
-
I followed the ShapeApp Sample implementing VSTA into our application. Now I ran into a problem. The Startup event of the Add-In is called in a different thread context than the ShutDown Event. This is also the case in ShapeAppBasicMFC sample. As a result of this behavior, simple tasks like opening and...
-
Digviay, Are you using a MessageFilter? To see an example of this see the ShapeAppMacroRecordingCSharp sample or my blog on Using a MessageFilter to avoid IDE threading and timing issues . If you are still having timing issues after implementing the MessageFilter, you could try hooking into the dte.Events...
-
Ramaraju, This depends on the version of VSTA you are using. >I am getting one error...The given key was not present in the dictionary This 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...
-
nitinumap, This depends on which version of VSTA you are using. For both versions of VSTA the SDKs include a sample and walk through. Samples: VSTA v 1- ShapeAppAdvancedCSharp, ShapeAppAdvancedMFC VSTA v 2- ShapeAppMacroRecordingCSharp If you would prefer these samples in Visual Basic check out our VSTASamples...