0
votes
0answers
71 views

ExcelDna.loader error for already registered addins

I am new to C# with VBA, I already have a Excel Application which uses a XLL(dll) developed using C#. When I created a new New xll(developed with C#) and registered it with a new Excel . It is giving ...
1
vote
2answers
187 views

Can't debug Visual Studio addin

Question says it all. I'm trying to write a Visual Studio addin (2012), and the experimental instance always launches without running anything in the addin. No breakpoints are hit in the main ...
0
votes
0answers
132 views

Excel 2010 VSTO Addin registered in HKLM doesn't load once disabled and then enabled

I have created a Excel 2010 VSTO Addin which will be registered under HKLM\Software\Microsoft\Excel\Addins\MyAddin.Connect, LoadBehaviour is 3 and the addin loads properly when excel is opened. But ...
0
votes
0answers
69 views

Adding a control to the XAML Designer menu

I'm writing an AddIn for Visual Studio 2010 and need to add a control for a command to the XAML Designer menu. I successfully added controls to the "Tools" (in main menu) and "XAML Editor" ...
0
votes
0answers
89 views

Loading of connection string with SQL Server Data Tools installed

I use ServiceCache.ScriptFactory.CurrentlyActiveWndConnectionInfo (from Microsoft.SqlServer.SqlTools.VSIntegration.VS.dll assembly) to get connection string for currently opened tab. The problem is ...
1
vote
1answer
158 views

How to load WCF Service bindings for a Visual Studio 2010 Addin?

My Questions is: I want to call WCF Service methods via Visual Studio Addin and the addin/or Visual Studio host is looking int the wrong place for configurations ( or maybe its looking at the right ...
0
votes
1answer
66 views

How do I get the current Project Template Name?

I have DTE.Project object - How do I get from there the Project Template Name? I'm trying to detect the project template so I would be able to later on recreate it programmatically. if I have the ...
2
votes
1answer
573 views

create and open the word document and bring it to front

i am creating a word add-in in c#, i am creating a document, inserting a hyperlink and trying to bring it front. but newly created document does not come in front. it goes to back of the current ...
0
votes
0answers
59 views

How to fix duplication of Toolbar and menu when debugging Visual Studio addin multiple times?

I am using the tutorial here at codeproject.com for Creating a Visual Studio Addin. I am using more or less the same code as your but i am facing a tiny problem The main toolbar i add under Tools> ...
1
vote
1answer
362 views

Connection string for addin in Visual Studio 2012

I develop an addin for MSVS 2012. I need to get connection string for tsql tab currently opened. I used IScriptFactory interface members to get connection string in MSVS 2010 (I use ...
1
vote
0answers
53 views

change the buttonText of addin button through Exec function

I saw several times in the MSDN this sentence: "Add-ins can later change the ButtonText name by responding to the QueryStatus method". but never saw how to do it. someone can help me? I want to ...
0
votes
3answers
553 views

how to disable and enable add-in button after click

I write addin for visual studio that includes two button. I want that when user will hit one of them, this button will be disable and the another one will be enable. how can I do it? The buttons are ...
0
votes
0answers
134 views

Visual Studio Add-in Show 'Document Context-Menu button' only for selected files

So I have been able to add a button in the right click context menu in the Document-tab, but the problem is, I want to show it only for select files. For example, only if the file is an XML file. ...
1
vote
2answers
191 views

Access List of Available Types from a Visual Studio Add In?

Is there a way to access the types (Classes, Interfaces, etc., and their meta data) that are available inside the loaded projects within a solution in Visual Studio? To be more specific, I'm ...
3
votes
3answers
1k views

How do I write to the output window in Visual Studio 2010 AddIn?

I'm writing a simple Visual Studio 2010 Add-In to do a common copying job here at work (getting dlls from libs sln). I want the progress of the copying to be written to the output window. I tried ...
1
vote
2answers
908 views

Visual Studio 2010 plugin / code to clear “Error List” warnings before each build

VS2010 is driving me nuts: whenever I rebuild, the "Error List" warnings from the previous compilation are persisted and any new warnings are simply added to the end of the list. Over time, this list ...
0
votes
1answer
586 views

Transparent icons for Visual Studio Addin

I'm working with this tutorial: http://msdn.microsoft.com/en-us/library/ms228771.aspx But it says, images MUST be 16x16, bmp. I was wondering, is it possible to use transparent icons, and if how? ...
0
votes
1answer
60 views

What type of extension for VS (and how) to make, to generate C# or C++ code from some text [more so a model]?

I am new to Visual Studio Extensibility and want to make an addin/extension which shall do the following: It should read all the files with a specific file extension (assume "*.ump"). It should ...
2
votes
1answer
238 views

Visual Studio 2008 addin copies and renames form files, gets duplicate members errors despite rename

I have a VB.NET project in Visual Studio 2008 that I created a specialized addin for. The addin prompts the user to select a database table, takes a template form class's files, copies them to another ...
0
votes
1answer
110 views

Addin for enumerating source files

I've been asked to develop an addin that goes through a C# solution and extracts all the documentation from the source files and export them to an HTML file. We can't use normal document generators ...
3
votes
2answers
1k views

Visual Studio 2010 Add-in: How to locate project references?

How do you programmatically find & iterate all project & dll references within a Visual Studio 2010 solution? I can iterate all projects and found the Project.ProjectItems property and ...
1
vote
1answer
153 views

What is the best way to delete the application settings when an Outlook add-in is uninstalled?

I've written an add-in for Outlook 2010/2007, which I install using a msi installer. During the execution of the add-in I save some settings in MyAddin.Properties.Settings.Default.MySetting. When the ...
0
votes
1answer
474 views

Visual Studio add-in/extension for adding/removing/handling references easily

I'm looking for a way of handling references in an easier way in Visual Studio. Is there an extension that provides one of those features: Copy references from a project to another Drag & Drop ...
0
votes
0answers
266 views

Force rebuild from VS2010 addin

I have a code in my addin: var sb = (Application.DTE.Solution.SolutionBuild as SolutionBuild); sb.BuildProject("Debug", containingProject.UniqueName, true); It builds the changes in the current ...
1
vote
1answer
501 views

Visual Studio add-in : Context sensitive context menu

I've built a Visual Studio add-in that is specific to class properties and fields. I want to only have my menu show when the selected items are one of the supported element types (property, variable). ...
0
votes
1answer
169 views

Visual Studio add-in : Context menu split

I built a Visual Studio add-in and I have a context menu that shows in the code window. I have about 6 options and I want to break them up using lines. I can't seem to figure out how to insert a ...
1
vote
1answer
553 views

i want to write a visual studio extension to access redmine issues. how would you recommend doing this?

i want to write a visual studio extension to access redmine issues. how would you recommend doing this? I thought about trying to use the work item system that already exists in visual studio with ...
1
vote
3answers
3k views

Visual Studio addin; to highlight all words which match selected word?

While using NotePad++, and select a certain word, it automatically highlights all matched words? Does anyone know if there is a Visual Studio addin that can do this? or are there any hidden ...
4
votes
1answer
482 views

Create a new top-level menu in Visual Studio

We have an add in for VS that currently is launched from the tools menu, the add-in consists of a a UI offering the user a few option buttons, which I now want to convert to a top-level menu that ...
1
vote
2answers
1k views

How to uninstall VMware add-in from visual studio 2008?

Hi I've VMware Workstation 6.5.2 installed on my PC. This program's add-in, use assign F6 key to one of its commands. The problem is that when ever I reassign F6 key to BuildSolution command, after ...
1
vote
0answers
49 views

Can I develop visual studio extension for viewing Web User Control in temp web page?

I work now in a huge project that we build all interface as Web User Controls .. every time I want to view & test one i should add it in web page and then view .. I think in a way to develop a ...
9
votes
1answer
4k views

Creating a 'Custom Designer' Visual Studio 2010 Add-in

A major part of our work is creating and manipulating certain XML files, for which have a custom editor. The editor is starting to get creaky and we are looking at building a replacement. Since VS2010 ...
0
votes
1answer
99 views

Any Addin for Visual Studio 2008 which would sort the imports?

I have seen plugins for VS 2005 and also for C# environment in VS2008 but not able to find for VB.NET environment in VS 2008.I want it to sort for each file, is there any addin for this?
1
vote
1answer
4k views

Add a Right-Click Menu Item in Visual Studio using C#?

How to write an add-in that allows me to right click on the files hierachy tree to do something that will display something? This is exactly what I want (please see the 2nd part of the video): ...
2
votes
3answers
260 views

Visual Studio Add in to Add Tracing

I was looking to write/get a visual studio addin. I want to be able to write descriptive log calls at the top and bottom of a function. like this log.debug("TheClass.TheMethod(string TheStringParam ...
0
votes
3answers
899 views

VS2008 Addin add to menu

I'm using this code to add an item to the code window right click menu: public void OnConnection( object application, ext_ConnectMode connectMode, object addInInst, ref Array custom) { ...
1
vote
2answers
514 views

How do I hide Visual Studio Add-in disabled commands

I created a Visual Studio Add-in that adds additional commands (four of them) to the top of Code Window context menu. I'm using permanent UI approach. Depending on the cursor position within code only ...
1
vote
2answers
798 views

Visual Studio 2008 and 2008 SP1 Addin: using EnvDTE90 and EnvDTE90a

Does anyone know the equivalent for doing this in Visual Studio 2008(EnvDTE90) and Visual Studio 2008 SP1(EnvDTE90a)? //this is code for Visual Studio 2005, works great EnvDTE80.DTE2 dte2 = ...
8
votes
2answers
5k views

Visual Studio add-on gallery?

i'm hoping to find some add-ons for Visual Studio to address some specific usability issues. Is there a Visual Studio addons gallery that contains a huge dumping ground of addons that every person, ...
1
vote
1answer
1k views

How to use app.config with Visual Studio add-in?

I'm building a simple VS2008 add-in. What is the best practice for storing custom run-time settings? Where do you store the app.config and how do you access it from the add-in?
1
vote
2answers
461 views

VS2008 Navigate to class definition add-in

I am looking for a Visual Studio add-in that would analyze the text around the cursor position and navigate to the corresponding class definition. For example I have this XML file that is currently ...
8
votes
4answers
2k views

Why does Visual Studio 2008 forget where to dock my add-in's window pane?

I wrote a simple add-in for Visual Studio 2008 that opens a dockable window pane. You can download the source and a binary installer by clicking here. The nature of the add-in means that it is ...