Browse Forum Posts by Tags
-
Igor, Thanks for checking out VSTA. The problem is you are generation a proxy for a class which uses an external base class (frmMain : System.Windows.Forms.Form). When you generated the proxy file the following warning probably came up: ProxyGen.exe Warning: 0 : Warning: Using an external type as a base...
-
Ric, By default ProjectGen creates add-ins which use a reference to the proxy.dll in the GAC. As long as you are reinstalling the latest copy of the proxy in the GAC and don't change your add-ins to use a local copy, your add-ins will see the changes. If you change something in the proxy like a scope...
-
bpreston, No problem- this was one of our first test cases. There are a couple of things that may have caused this problem. If you have VSTA v 1 installed you may be bringing up version 1 of ProxyGen or ProjectGen. If you added the descriptor file to a project and then modified it, you may be running...
-
oh my god, when will Microsoft solve this problem.we always need to new objects in my add-ins.
-
Ric, I'm glad to hear you are making progress! Don't feel bad about the reference question, we see that a lot. Did you know you can add additional references to the project (add-in) templates with ProjectGen? Also, if you are interested in getting your add-ins to work like the ShapeApp samples (where...
-
The MS VSTA team responds to this issue as follows: In the 3 rd proc scenario (Non-Destructive Seamless Debugging) the context is a transparent proxy created in the 3 rd proc, not in the host’s process. When the 3 rd proc is destroyed, so is this context. So, it looks like all the host has to do is catch...