![]() |
General Programming »
Macros and Add-ins »
VS.NET Addins
Intermediate
Visual Studio Addin to run MacrosBy joujoukinderA Visual Studio add-in to simplify running your macros |
C#, Windows, .NET 1.1VS.NET2003, Dev
|
|
Advanced Search |
|
|
|
||||||||||||||||

Macros Manager is a Visual Studio .NET 2003 Addin that launch specified macros from a Windows Form. Having been creating and using many macros in Visual Studio .NET 2003, I was looking for a way to call them easily.
I first added menus with a Shortcut on my macros into Visual Studio, but many times the design layout disappeared. Then I had no choice to find another way to call my macros quickly. That's why I have made Macros Manager.
Actually, it just execute macros, but you can improve it to manage macros, depending on your needs.
Macros Manager is an addin. You should be familiar to addins before install or improve Macros Manager. If you want to use it, simply install it with the demo project.
After installing the addin, you will have a new menu in the Visual Studio .NET 2003 tool's menu:

Macros Manager is simple to use. Behind it there is a mapping file, written in XML, that let you configure which macro you want to launch by clicking on a node in the treeview in the form. Obviously, the macro must exist.
You can also create group nodes if you want to create a structure for your macros. There is no level limitation.
Example of the XML file:
<?xml version="1.0" encoding="iso-8859-1" ?>
<Root>
<Node1 ImageIndex = "0" Name="Macros group 1">
<Macro ImageIndex = "1" Name="Show Hello 1"
MacroStrongName="Macros.MyMacros.Functions.Hello1" />
<Macro ImageIndex = "1" Name="Show hello 2"
MacroStrongName="Macros.MyMacros.Functions.Hello1" />
</Node1>
<Node1 ImageIndex = "0" Name="Macro group 2">
<Macro ImageIndex = "1" Name="Show hello 3"
MacroStrongName="Macros.MyMacros.Functions.Hello1" />
</Node1>
</Root>
Another way to manage macros in Visual Studio, without changing the IDE layout.
| You must Sign In to use this message board. | ||||||||||||||||||||||
|
||||||||||||||||||||||
|
||||||||||||||||||||||
|
||||||||||||||||||||||
|
||||||||||||||||||||||
General
News
Question
Answer
Joke
Rant
Admin
|
PermaLink |
Privacy |
Terms of Use
Last Updated: 18 Oct 2006 Editor: Chris Maunder |
Copyright 2006 by joujoukinder Everything else Copyright © CodeProject, 1999-2009 Web18 | Advertise on the Code Project |