Search - Articles
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Tuesday, March 03, 2009
Dev Articles
Search Directory
ASP.NET
VB.Net
C-Sharp
SQL Server
 

FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home >Search > Articles & Samples > Visual Studio 2005 > Add-Ons


Search:
What's New - What's Hot
Auto Build Environment Add-in for Visual Studio .NET     
Total Hits: 103  |  Today: 0Author: Joshua Jensen      Rating:  
Read Reviews | Write Review |  Your Rating: 

The Auto Build Environment add-in uses a new file called SolutionName.slnenv residing in the same directory as the solution to provide build environment variables tailored to a given solution file. .slnenv stands for "solution environment." The Auto Build Environment add-in executes this file at solution open time and before the start of each build, resetting the build's environment variables accordingly....

VSEDebug - VS.NET Debugging Enhancement     
Total Hits: 74  |  Today: 0Author: cppmanuf      Rating:  
Read Reviews | Write Review |  Your Rating: 

Ever since I started using the STL heavily, I was constantly annoyed at the inability of the Visual Studio debuggers, or any debugger, for that matter, to properly parse them. Sure, I could see how many elements were in a vector, but I couldn't actually view them outside of code. And I could look at all the elements of a std::list, if I didn't mind having a treelistview that was larger than a doublewide. Other types were even more ridiculous, particularly maps, stacks, and queues. So, fed up wit...

x.doc - a code documentation comment manager add-in for VS2005     
Total Hits: 75  |  Today: 0Author: Willem Fourie      Rating:  
Read Reviews | Write Review |  Your Rating: 

x.doc is short for "External Documentation." It is a Visual Studio (VS) 2005 add-in that provides a means to manage and visualize source-code comment documentation interactively in the IDE. Its main feature is that it provides an easy way to 'externalize' the documentation comments using the documentation XML include tag. It also has many other features which are documented in the Features section below. This type of add-in is not new and has been developed by others - see the Resources section ...

wiicwgp (what is in the clipboard is what get pasted) Add-in     
Total Hits: 35  |  Today: 0Author: Rama Krishna Vavilala      Rating:  
Read Reviews | Write Review |  Your Rating: 

Fortunately, Visual Studio .NET Extensibility API is quite rich and provides an amazing level of control. The solution turned out to be pretty simple. Visual Studio .NET fires two events before any command get executed AfterExecute and BeforeExecute. The BeforeExecute event allows the handlers to optionally cancel the command execution. So the add-in can handle the BeforeExecute event and write the text as it is and cancel the default command execution. Here is a detailed description of the add-...

A Utility to Convert VS.NET 2003 Project Files     
Total Hits: 17  |  Today: 0Author: dacris      Rating:  
Read Reviews | Write Review |  Your Rating: 

I decided to create a utility that converts projects from the new Visual Studio .NET 2003 (codename "Everett") to Visual Studio .NET 2002. This is because in my experience I was working with both and found it hard to manually convert the projects and it often introduced problems, so I made an automated tool to do this job for me. So, all who are having the same difficulty, this tool is for you....

A handy keyobard shortcut for "Double Click" on VC6 IDE     
Total Hits: 49  |  Today: 0Author: Alberto Bar-Noy      Rating:  
Read Reviews | Write Review |  Your Rating: 

This is very handy keyboard shortcut which started with the need to mark and select a word inside the IDE of VC6 without having to take my hand from the keyboard and use the mouse. In order to do that with the standard IDE commands of VC6 IDE one needs to use a couple of keyboard shortcuts. For example, when the cursor is in the middle of a word one has to press Ctrl + left arrow to go to the beginning of the word and then press Shift+Ctrl and right arrow to select the word, or double click the ...

Message with style     
Total Hits: 85  |  Today: 0Author: Andreas Saurwein Franci Gonçalves      Rating:  
Read Reviews | Write Review |  Your Rating: 

Won't work. Anyway, with some tricks you can do exactly this. The nice thing is that you will never ever again need to use "Find" to locate a particular message in your source code. Just double click the line with your message in the output window and VC's editor will jump to that location....

CollapseAll Macro for Visual Studio .NET     
Total Hits: 78  |  Today: 0Author: Edwin Evans      Rating:  
Read Reviews | Write Review |  Your Rating: 

Visual Studio .NET has a cool feature that it will automatically synchronize the Solution Explorer with the open file. One problem though is that if you have a large number of projects, the number of branches can soon get out of control - you can't see the trees for all the branches, so to speak. This is a very simple macro that you can use to collapse all the project nodes in the Solution Explorer....

Customized Visual Studio .NET package: your fully integrated document window inside the IDE     
Total Hits: 84  |  Today: 0Author: Michael Sheinin      Rating:  
Read Reviews | Write Review |  Your Rating: 

The most annoying and blatantly absent feature of Visual Studio .NET 'extensibility' is the incapacity to insert a custom window into the IDE. Obviously, the Extensibility Object model was deliberately castrated in the interest of Microsoft salesmen, since the VSIP (Visual Studio Integrated Products) package is distributed and sold separately. This article and supplied code will provide you with essential knowledge and the means to implement a customized Visual Studio .NET package - the software...

Commenter - A CodeRush Plugin which Helps you to Comment your Code     
Total Hits: 46  |  Today: 0Author: exDreamDuck      Rating:  
Read Reviews | Write Review |  Your Rating: 

Commenter is a plugin for CodeRush, which is an addin for Visual Studio (Visual Studio 2002, 2003, 2005 and 2008 are supported). Basically Commenter will help you to comment your code and make it easier to navigate through your code. Currently Commenter supports only C#, but C++ might work too (but may need some additional testing). Support for VB.NET might be added if requested, don't know if VB guys would like such a feature. The project files use Visual Studio 2003, but you can convert them t...

Adding Custom Controls to Visual Studio.Net Toolbox Programatically     
Total Hits: 73  |  Today: 0Author: Serkan Inci      Rating:  
Read Reviews | Write Review |  Your Rating: 

The goal of this article is to simplify the process of programmatically adding custom controls to Visual Studio .NET control toolbox. The accompanying sample will be helpful for component developers, who want to deploy their custom controls to their customers in a package. There is also a sample console application, which demonstrates the techniques presented in this article. This console application can be run from the command line with parameters allowing it to be launched during installations...

Find and Bookmark Text Add-in     
Total Hits: 91  |  Today: 0Author: hitch      Rating:  
Read Reviews | Write Review |  Your Rating: 

This is a VS.NET add-in sample project that I wrote so that I could do a Find and bookmark of all occurrences of a text selection in an open code file. I'm somewhat lazy. So, I thought it would be convenient to have this functionality available on the code window context menu, instead of having to open the Find window or learn a bunch of new keyboard key sequences....

VS.NET add-in - search and jump to functions in current source file     
Total Hits: 43  |  Today: 0Author: Stuart Carnie      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article is not so much an introduction to writing add-ins as it is just simply sharing a utility I found very useful for Visual Studio .NET. I primarily use VS.NET / C++ for development, however all our client applications are developed in Delphi 7.0, and I find the GExperts IDE enhancement suite for Delphi very good. Specifically, the ability to go to a function within the current source file. When you invoke the add-in, the above search dialog prompts you to enter a search string. As you ...

VS.NET Version Resource Auto-Increment Add-in     
Total Hits: 58  |  Today: 0Author: Brandon Sneed      Rating:  
Read Reviews | Write Review |  Your Rating: 

Version number maintenance is a hassle. I think this is a key contributor to why so many people do it so many ways. Some update the version at various milestones, others just when they feel like it, and still others only on a full release. Then there�s the group that doesn�t do it at all unless asked. I won�t say which I fell into, but it isn�t a problem for me anymore....

Microsoft Enterprise Library 2005     
Total Hits: 178  |  Today: 0Author: Gary Blatt      Rating:  
Read Reviews | Write Review |  Your Rating: 

The Enterprise Library is a collection of Application Blocks released by the Patterns and Practices group within Microsoft. It is an update to the previous Application Blocks for .NET that includes complete architectural changes for most of the blocks. An Application Block can be thought of as an add-on to the .NET development environment. They are reusable components that encapsulate Microsoft best practices in each area. Each block is well-documented and includes complete source code. In fact,...

jQuery Alert Dialogs Plug-in  Version: 0.00     Price: $0.00  
Total Hits: 2  |  Today: 0Author: Gil Fink      Rating:  
Read Reviews | Write Review |  Your Rating: 

When you want to alert the user in the client side of a web application, probably you are embarrassed jQuery Alert Dialogs Plug-in(or you don't give a damn) when you use JavaScript built-in alerts. I know I do. JavaScript built-in alerts are very ugly IMHO and therefore I try to use alternatives instead. In this post, I'll show a very useful alternative that I've been using lately in more then one project – the jQuery Alert Dialogs plug-in....

A Visual Studio Add-In That Converts C# Code To Visual Basic  Version: 0.00     Price: $0.00  
Total Hits: 1  |  Today: 0Author: Scott Swigart      Rating:  
Read Reviews | Write Review |  Your Rating: 

The "Paste as..." functionality in applications like Microsoft® Word has become indispensable for me. I often copy something from the Web and want to paste it into a document without all of the HTML formatting. Paste as is the tool for the job....

Visual Studio 2005/2008 Addin to Open Src Files (*.h/*.cpp) Consistently on the Left/Right  Version: 0.00     Price: $0.00  
Total Hits: 6  |  Today: 0Author: mikem8      Rating:  
Read Reviews | Write Review |  Your Rating: 

CodeWinPos is a simple plugin (VSIP) for Visual Studio 2005/2008 which opens *.h files on the left half of the IDE workspace and *.c/*.cpp files on the right. It works with either the tabbed or MDI window layout options in Visual Studio 2005/2008 IDE....

Using VSTO Add-In To Automate Frequent Excel 2007 Tasks  Version: 0.00     Price: $0.00  
Total Hits: 9  |  Today: 0Author: Miguel Santos      Rating:  
Read Reviews | Write Review |  Your Rating: 

In this article, we will use Visual Studio 2008 SP1 C# to create an Excel Add-In that implements each of the tasks listed below for Excel 2007:
- Task 1: Copy sheet contents to a new sheet.
- Task 2: Reverse string in current cell.
- Task 3: Calculate the maximum value of a numerical range selection.
- Task 4: Save as xls file
- Task 5: Save as csv file...

Building the Contoso Auto Sales Office Business Application Part 1 - Scheduling Customer Appointments  Version: 0.00     Price: $0.00  
Total Hits: 11  |  Today: 0Author: Robert Green      Rating:  
Read Reviews | Write Review |  Your Rating: 

Contoso Auto Sales is a fictitious automobile dealer specializing in high-end automobiles. Contoso has computer systems to talk to suppliers, to generate an invoice when a customer purchases an automobile, to bill for service visits and to pay employees. It wants a system to manage the day-to-day interaction with customers and improve its level of pre-sales customer service....


1  2  3  4  5  6  7  8  9  10  Next >> 


Disclaimer - Privacy
© 2002-2012 DevASP.net