Try if you can cast the Window to an HTMLWindow object and then use the CurrentTab property to switch views... Regards, Carlos J. Quintero (Visual Developer -...
There is a VS addin sample called CSharpAddin. It has the following code: public void OnConnection(object application, ext_ConnectMode connectMode, object...
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the vsnetaddin group. File : /VS.NET...
vsnetaddin@yahoogroup...
Jul 1, 2004 9:51 pm
1931
My addin generates the about box information dynamically during load time. However, how do I know whether the addin is installed under HKCU or HKLM? ...
Wouldn't that depend on whether the user selects to install the add-in for everyone or just for himself? Arild Fines <arild.fines@...> wrote:My addin...
... Yes, it would. But I don't know how to extract that information at runtime. -- Arild AnkhSVN: http://ankhsvn.tigris.org Blog: http://ankhsvn.com/blog IRC:...
There are another couple of things for your consideration: - You can customize your msi package with the Orca utility to hide the "All users" and "Just Me"...
Hi There, I want to get an icon from the AddIn Dll Resource to put it into the AddIn Tool Window. How can I get this Icon from the Resource file? *** i have an...
http://www.codeproject.com/dotnet/vsnet_addin_icon_change.asp gives you some idea ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ E-Mail...
Hi all I'm creating a toolwindow using CreateToolWindow within a VSIP project. I was wanting to get this window to dock as if it were a document window. I'm...
Hello, I am new to making VS.NET Add-ins. Can anyone please tell me the name and the location of the VS.NET Add-In wizard and the name of the folder containing...
I think this has been discussed already in this forum. Try message #1379 ToolWindow Docking Regards, Carlos J. Quintero (Visual Developer - .NET MVP) _____ ...
Maybe you are referring to: C:\Program Files\Microsoft Visual Studio .NET 2003\Common7\IDE\Extensibility Projects If not, try searching in folders: C:\Program...
Thanks Carlos I was aware of that article, but this points to using the DTE and changing the IsFloating and Linkable flags. Whilst I can simply iterate...
Ok, this is one tough, I think. Suppose that you want your add-in to modify property values of controls of a form. Once you have the IDesignerHost from ...
Hi Carlos, thanks for your quick reply. I now realize the Add-In wizard files aren't supplied with Visual C++.NET 2003, which explains why I couldn't find them...
Hello again, can anyone offer suggestions why I get this error:_ "Unable to attach to application 'vsmsvr.exe (PID: 3248) on machine COMP" whilst trying to...
Hello! I've created an add-in which works on both files and VC projects, when right clicking on them. It gets either a file or a project, generate a command...
Carlos, I haven't tried this is the context of an Add-In, however the designers I've written for custom controls use (approximately) the following code to...
Carlos, I don't have an answer for #1, but I think you can accomplish #2 by retrieving the Document object for the form and setting its Saved property to...
AFAIK, "SubType" property is the closest thing and I think that I have seen only 5 subtypes: "Code", "Form", "UserControl", "Component" and "ASPXCodeBehind"....
Hi. Two steps method: First create a solution which includes one project of each type you want to specify, I.e.: One Web Project, one class project and so on. ...