add-in

Visual Studio - plugin finding/removing dead code?

Anyone knows any free Visual Studio add-in that would find and/or delete dead (unused) code? I saw such possibility in MZ-Tools, but it's a little expensive as for private use ;) ...

When developing a Microsoft Office Add-In (for Word), is it possible to store hidden metadata information that is tied to a specific Table or Cell within a Word document?

I am trying to store metadata (basically a unique id) along with each cell of a table in a Word document. Currently, for the add-in I'm developing, I am querying the database, and building a table inside the Word document using the data that is retrieved. I want to be able to save any of the user's edits to the document, and persist it...

Add database add-in in Monodevelop 2.2.2 on Windows ?

I have the problem I just installed the new Monodevelop 2.2.2 on Windows but I haven't the database add-in and I cannot add-in with the basic repository. Are-there other repository for that ? Thanks with advance. Narglix ...

How to create an addin for PowerPoint

I want to create an addin for PowerPoint that adds a button to the PowerPoint toolbar. How can I do this? ...

how to add an addin button to powerpoint ?

there's a problem in attaching an addin to powerpoint using following code public void OnStartupComplete(ref System.Array custom) { CommandBars oCommandBars; CommandBar oStandardBar; try { oCommandBars = (CommandBars)applicationObject.GetType().InvokeMember("CommandBars", BindingFlags.Get...

COM AddIn for Outlook Tries to Install Self on Startup

Hi, I have an outlook addin that I have been developing for some time now, and am experiencing a problem. If I have a computer with two 'administrator' users (call them User A and User B), the addin installs and runs just fine as long as the same user tries to run it. In other words, if User A installs the addin, then User A has no pro...

Outlook 2003 Add-In Setup Project with COM DLL Deployment Problem

Hi, I developed an Outlook 2003 add-in which uses the com dll redemption. I created a visual studio 2008 setup project, added a custom action to run "caspol.exe -machine -addgroup 1 -strong -hex [key] -noname -noversion FullTrust -n \"Name\" -description \"desc\" and moved the registry keys under software to HKLM as described in http://m...

how to create one setup file for two projects in c#?

Hello, I have two projects 1) COM project(Shared Add-in) and 2) myProject(windows application) now i want to execute both project through one setup file. problem is the first project is shared add-in project so how can i do that? ...

Visual ASP.NET MVC Designer

Is there an add-in for the VSIDE that allows you to visually construct ASP.NET MVC solutions? Back in my struts days there were a number of options that made hooking together Views/Models/Controllers easy and interactive. ...

HTML Comment-out Add-In

Here is an old add in to quickly comment out HTML code. Maybe I am missing it, but it seems like there is a shortcut in VS2010 to scratch your tail with one click but commenting out HTML code is still awkward as hell. What's the easiest way to get a function like this working? Can I expect any add-ins that were written for older versio...

How do I add a Textbox in a menu in Visual Studio 2010 addin?

I would like to add a texbox to the Project,Item and solution menu in Visual Studio 2010. It seems the way I did it in Visual Studio 2008 no longer work. Old way: menuItem = _applicationObject.GetCommandBar("item").Controls.Add(MsoControlType.msoControlEdit, 1, "", 1, false); Is there a way of doing this in Visual Studio 2010? Doing th...

getting mail source in Outlook 2007 add-in

Hi, I'm writing an add-in that would do some processing on the body of the received emails. Since emails are often replies to previous emails I need first to remove the content of previous emails. And here lies the problem... If I use the MailItem.Body string I get the content that was processed by Outlook and doesn't contain any '>' ...

Syntax highlighter with selective attribute highlight - VS Addin

Hi, Is there any VS Adding for highlighting particular code block or attribute from whole code ? Thanks, Piyush ...

See images in SSMS?

I was browsing around and found this blog post: http://erikej.blogspot.com/2010/04/version-3-of-exportsqlce-now-available.html (It is for a great add in if you user SQL Server CE.) On that post I saw an screen shot of SSMS with images in the results. How is this done? I have images in my database (PNG files that are serialized via ...

Post-Build event execution order problem in VS2008 Add-In

Hi, in my project I have defined a post-build step, where the linked executable is moved to another directory. Now I have written an addin for the Visual Studio, which handles the BuildEvents and do some actions on the linked executable after the build. My problem is, the post-build step of the Visual Studio is executed before the post-b...

Addin to extend Solution Explorer with "Open corresponding solution" when available?

Imagine a folder structure that contains more than 200 solution files for projects that all belong to one software. Most of them generate shared libraries that are referenced in other projects that are contained in own solutions. Wouldn't it be wonderful if there was a possibility of right clicking such a referenced assembly in the solu...

Visual Studio add-in to support images inline with source?

We use Visual Studio 2005 here, and in an attempt to improve the documentation of our source, we're looking for a Visual Studio add-in that will allow images to be viewed in line with source from within the IDE. For example, the use case I'd like to fit is the following: In the directory in which my source lives, I save my image file ...

Linked List push()

The stack is initialized with a int MaxSize =3. Then I push one int onto the list. " Pushed:" is returned to the console. Program crashes here. I think my logic is flawed but unsure. Maybe an infinite loop or unmet condition? Thanks for your help. I'm trying to traverse the list to the last node in the second part of the full()...

Accessing Visio Database Reverse engineering schemas through an addin

I'm trying to build a visio addin that allows me to get a list of tables when a database reverse engineer is run. I'm using the Microsoft.Office.Interop.Visio library. I can find a list of shapes on the page, but this gives me every single shape on the page and every single piece of text. i would like to have a list of just the database...

How to change the order of toolbar buttons in Internet Explorer?

I know I can simply write to the CommandBandLayout regkey but since I don't know what format it is I'm having doubts if that is safe. Also, this answer suggest it's the wrong solution: http://stackoverflow.com/questions/1239266/how-to-modify-commandbandlayout-reg-key-value But how can I change the order a bit? I have written an Interne...