Hi In VS2003 we had created our own package project with our own project type that loads up a web project as a nested project. In VS2005 I'm looking to do...
Hi Carlos, ... OK, thanks for the hint! (i.e. this folder is only created on first VS.NET 2005 activation after installation?) ... Yes, I see Extensibility...
HI Shamil, ... I think so. It would be overkill for VS to create that folder for each user account before you start VS for that account. ... I think both. I am...
Hi Carlos, ... Yes, that's right, but it could have been created for the user, who installs VS.NET. Still to check that somehow, somewhere with virgin VS.NET...
Hi Shamil, ... Did you follow this step?: To use transparency you need to use a special color: select the lime green color in the Colors toolwindow, click the...
Hi, I am creating an Addin for Microsoft Office / Excel / PowerPoint. For all the three application the Addin will be same. How will I identified from which...
Hi Anil, The OnConnection method receives a "Application As Object" parameter that you must cast to the proper type. If Application.GetType().Name returns...
Hi, I gone through your article. I am using the following code for following your code. I am using vs2003. DTE objTempAppObject = DTE(application); Window...
If your first line of code is: DTE objTempAppObject = DTE(application); then your add-in will only work with Visual Studio, not with any Office app. You need...
I am creating a addin which will work in Word / Excel / PowerPoint. I am creating it in c#. How would I know whether addin is invoked from Excel / Word or...
Hi, I am not creating the addin for Visual Studio. I am only creating it for Word / Excel and powerpoint. Now in addin I want to know the application type. In...
Here is the OnConnection() method public void OnConnection(object application, Extensibility.ext_ConnectMode connectMode, object addInInst, ref System.Array...
The TypeOf statement of VB.NET and the typeof statement of C# are quite different. So, try this: Microsoft.Office.Interop.Excel.Application m_objExcel; ...
Hello, I am using VCFileCodeModel to iterate over code elements by first getting CodeElements collection, then recursively processing each CodeElement and...
Hi Vlad, C++ has some problems with the code element hierarchies. I reported something similar: Bug Details: FileCodeModel.CodeElements incorrect for some C++...
Hi, I want to override open button click event of Excel / Word. How can I get control over that? Thanks [Non-text portions of this message have been removed]...
Hi, First you need to get the CommandBar, then you must get the CommandBarControl, cast it to CommandBarButton and then add an event handler to its Click...
Hi, I am doing the same think but perhaps I do not know the key for Open button. Here is the code that I am using. object oActiveExplorer oActiveExplorer= ...
Hi Vlad, This is not a clear solution for your problem. However, it is interesting to see that you can use the global function or variable in C#. I never...
Rather than guessing blindly, you can iterate the objToolbar.Controls collection to see the captions /names of the controls and then you will see more clearly...
Hi, There is one more method FindControl() in Controls. But It also requires the id of the button. How I can get the ids of the different button from Excel / ...
Why canīt you iterate? What errors are you getting? The second case should be: foreach(CommandBarControl objcontrol in objToolBar.Controls) Best regards, ...
Use foreach(CommandBarControl objControl in objToolBar.Controls) Best regards, Carlos J. Quintero MZ-Tools: Productivity add-ins for Visual Studio You can...