Click here to Skip to main content
15,889,595 members
Articles / Programming Languages / Visual Basic
Article

Regions Add-In for VS.NET 2003

Rate me:
Please Sign up or sign in to vote.
4.77/5 (53 votes)
11 Feb 20053 min read 359.3K   4.7K   127   133
Create an add-in for VS.NET 2003 to create regions.

Sample Image

Introduction

I find I spend a lot more time than I would like adding newly created functions to existing regions or new regions. So for myself and anyone else like me, I have developed this add-in.

Using the code

Two new commands are added to the context menu in the code window, when there is code selected.

Add To New Region will create a new Region, using the text supplied from a dialog, around the selected code.

Image 2

Add To Existing Region will show a dialog allowing you to select which region the code should be added to. You can also use this function to create a sub-region by ticking the checkbox.

Image 3

V2.0

I have added a couple of new features.

The Region Explorer

Image 4

This is a tool window that can be docked or floating, just like the Solutions Explorer and other VS tool windows.

  • Shows the position of regions in the opened document.
  • Can be used to 'jump' to a region that is not visible in the current document view.
  • Can be used to paste text from the clipboard to a region.
  • Can be used to add text to a region via drag'n'drop.

The Region Explorer is not available and will be empty, if the current active editor window is a Design View or any tool window type (e.g. Start Page, XML, etc...).

Use the Region Explorer command on the View menu to show, and the close button of the control to hide.

Setup Dialog

Also in v2 is a setup dialog to allow some flexibility in the way the add-in is configured. This setup can be accessed from the Tools menu or from the Image 5 button on the Region Explorer.

Image 6

Points of Interest

This version should work for C# and VB in VS.NET 2003.

It has not been tested under VS.NET 2002, but it will at least need the registry entries changing from:

HKEY_LOCAL_MACHINE\
 SOFTWARE\
   Microsoft\
     VisualStudio\
       7.1\
         AddIns\
           RegionsAddIn.Connect

to probably:

HKEY_LOCAL_MACHINE\
  SOFTWARE\
    Microsoft\
      VisualStudio\
        7.0\
          AddIns\
            RegionsAddIn.Connect,

although this is only supposition on my part.

Important

If the v1.x version was previously installed, it should be removed using the following process, before installing v2.0.

  • Close VS.NET.
  • Uninstall v1.x from Add/Remove Programs.
  • Open VS.NET (you may get a message declaring that VS.NET cannot load the add-in; this is fine, we want VS.NET to remove all its references to this add-in).
  • Load a project, and select some code. Right click, select 'Add To New Region'. (You may get a message declaring that VS.NET cannot load the add-in; this is fine, we want VS.NET to remove all its references to this add-in.) Now do the same for the 'Add To Existing Region' command.
  • Close VS.NET.
  • Install v2 of the add-in, and continue as normal.

History

  • 08/06/2004 - First release.
  • 15/06/2004 - v1.1. Updated code to fix bugs identified by 0siris, and Alex Kucherenko. Also, added check to stop any region that is spanned by the selection from being displayed in dialog.
  • 06/02/2005 - v2.0. Major rewrite to fix reported bugs and to add new features.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
JWT
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRe: Bug fixes and new feature available Pin
JWT10-Dec-04 14:05
JWT10-Dec-04 14:05 
GeneralRe: Bug fixes and new feature available Pin
Carl Mercier23-Dec-04 4:19
Carl Mercier23-Dec-04 4:19 
GeneralRe: Bug fixes and new feature available Pin
JWT23-Dec-04 7:04
JWT23-Dec-04 7:04 
GeneralRe: Bug fixes and new feature available Pin
M.Lansdaal30-Dec-04 8:31
M.Lansdaal30-Dec-04 8:31 
GeneralFixed some Annoyance Pin
Matt Hawley19-Nov-04 4:28
Matt Hawley19-Nov-04 4:28 
GeneralIndented Region Problem Pin
ShandyAndy15-Nov-04 5:22
ShandyAndy15-Nov-04 5:22 
GeneralRe: Indented Region Problem Pin
M.Lansdaal10-Dec-04 9:21
M.Lansdaal10-Dec-04 9:21 
GeneralIt's sort of installed!! - Error or Bug Pin
Member 70245528-Sep-04 4:57
Member 70245528-Sep-04 4:57 
GeneralRe: It's sort of installed!! - Error or Bug Pin
JWT1-Oct-04 10:34
JWT1-Oct-04 10:34 
GeneralRe: It's sort of installed!! - Error or Bug Pin
robdogg121-Oct-04 19:57
robdogg121-Oct-04 19:57 
GeneralRe: It's sort of installed!! - Error or Bug Pin
S Sansanwal25-Jan-05 16:16
S Sansanwal25-Jan-05 16:16 
GeneralRe: It's sort of installed!! - Error or Bug Pin
JWT29-Jan-05 6:28
JWT29-Jan-05 6:28 
GeneralBug found & fixed... Pin
robdogg119-Aug-04 21:09
robdogg119-Aug-04 21:09 
GeneralRe: Bug found & fixed... Pin
JWT20-Aug-04 11:07
JWT20-Aug-04 11:07 
GeneralRe: Bug found & fixed... Pin
robdogg121-Aug-04 6:42
robdogg121-Aug-04 6:42 
GeneralInstallation bug Pin
Michael D18-Aug-04 9:54
Michael D18-Aug-04 9:54 
GeneralRe: Installation bug Pin
JWT20-Aug-04 11:10
JWT20-Aug-04 11:10 
Generalproblems and solutions Pin
Salty Dog5-Jul-04 1:32
Salty Dog5-Jul-04 1:32 
GeneralRe: problems and solutions Pin
Colin M in Sydney24-Aug-04 23:50
Colin M in Sydney24-Aug-04 23:50 
GeneralRe: problems and solutions Pin
Salty Dog25-Aug-04 21:49
Salty Dog25-Aug-04 21:49 
GeneralTrouble with VS.NET 2002 Pin
kruff21-Jun-04 2:47
kruff21-Jun-04 2:47 
GeneralRe: Trouble with VS.NET 2002 Pin
Anonymous21-Jun-04 13:00
Anonymous21-Jun-04 13:00 
GeneralRe: So... what's a "region" Pin
Colin Angus Mackay20-Jun-04 9:35
Colin Angus Mackay20-Jun-04 9:35 
Generalanother little bug - but its GREAT! Pin
rob-lan19-Jun-04 2:51
rob-lan19-Jun-04 2:51 
GeneralPossible Bugs Pin
Member 44333617-Jun-04 3:26
Member 44333617-Jun-04 3:26 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.