Hi, I defined my own templates for WebForms into a folder. I created a toolbar with some icons. One of them opens the "Project.AddWebForm". Now I want to...
I am using VC++.NET to compile some C code. It compiles and runs great. But when I try to add web reference to the project, I get compile error: c:\Program...
This is an update with regard to the problem of high memory usage when opening and closing designer windows and switching languages. (See files in Knowledge...
Hi all, I know how to use general extensibility (i.e. non-VSIP one) in order to add methods/functions to existing classes. What I'm wondering if there is a way...
No, I have not seen that problem. Can you reproduce the problem with a minimal addin (<15 lines of code) that you can post? Regards, Carlos J. Quintero (Visual...
hi all, i do my first steps creating a .NET add-in using C++ and can not find how to hide the button text, when the control is added to the toolbar. When i try...
I think that by default VS.NET is smart enough to know that when adding a CommandBarControl to a toolbar it must not show the text, only when you add it to a...
... Sure. Get a hold of an UIHierarchyItem for the node in question and set the Expanded property. You can get a UIHierarchy object from the .Object property...
Hi, You can use Code Model that interact with Editor via TextPoint object to programmatically add code to your methods/funtions. Here is a macro that inserts...
Arild is right, but we aware of Q00011 "UIHierarchyItems.Expanded=False does not change icon of folders" (see the Knowledge Base of the Files section of this...
I developed a plugin and I would like to create the setup file. I wanted to know if the plugin, after installed with the setup file, is already registered in...
Hi, There are 2 things that must be registered: - COM registration: you must mark the addin dll for COM registration in the setup properties. - Addin...
Hi all, this is my first post. I am glad to be here, this group is a very helpful resource! I've stumbled over the problem how to remove a command bar once the...
... You need to add the assembly containing the installer class to the .MSI project. Then go to View->Custom actions(still on the MSI project) and add that...
What do you mean by INstaller Class here? ... Craig ... as ... Uninstall ... tries ... but ... in ... bar ... of ... my ... You ... your ... some ... I...
Has anyone been successful in using a Manifest file with an Add-in to get XP-style look and feel for controls on a C# (with shim) created form in the add-in? ...
Though required, I suspect that a manifest file is not enough. Try calling SetWindowTheme for your window: typedef HRESULT (STDAPICALLTYPE *pfnSetWindowTheme)...
... Yes - manifest files are for .exes. You'd need to make a devenv.exe.manifest and stick it in the VS.NET folder. This might have some unwanted effects ...
... This is what I do: // the Start Page window is a web browser Window browserWindow = context.DTE.Windows.Item( Constants.vsWindowKindWebBrowser ); ...
Hi, is there a way to get the directory of the current C# Project to be used for by an addin. When I do the Directory.getCurrentDirectory (), it sends back a...
Hi all, I get it on VS.NET 2004 and it's inconsistent at best. I was able to reproduce it more often when I had all three of my add-ins running and debugging a...
Check the Project.Properties collection. One or more properties return the path or full name. Regards, Carlos J. Quintero (Visual Developer - .NET MVP) _____ ...
Hi, I often observe the same exception while debugging my add-in. All that the debugger shows is that it happens in the thread with very high priority. This...
In the OnStartupComplete I register on the "SolutionEvents.Opened" event. When I am opening an existing solution that does not contain any projects, the...