vote up 22 vote down star
14

I've always been searching for a way to make Visual Studio draw a guideline (a vertical line after a certain amount of characters). I recently found a simple solution I would like to share:

If you are using Visual Studio 2008 (*) open the registry at HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\9.0\Text Editor and add a new string called Guides with the value RGB(230,230,230), 80. The first part specifies the color, while the other one (80) is the column the line will be displayed.

If you restart Visual Studio, the vertical line will appear:

Screenshot of Visual Studio

(*) Registry paths for various version of Visual Studio:

2003: HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\7.1\Text Editor
2005: HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\8.0\Text Editor
2008: HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\9.0\Text Editor
2008 Express: HKEY_CURRENT_USER\Software\Microsoft\VCExpress\9.0\Text Editor

This also works in SQL Server 2005 and probably other versions.

flag
This has no effect whatsoever on my computer. Any ideas? – Daniel Straight Mar 5 at 20:11
It doesn't seem work in Visual Studio 2010 Beta 2. – Jivko Petiov Nov 7 at 20:16

4 Answers

vote up 11 vote down check

This is originally from Sara's blog.

It also works with almost any version of Visual Studio, you just need to change the "8.0" in the registry key to the appropriate version number for your version of Visual Studio.

The guide line shows up in the Output window too.

You can also have the guide in multiple columns by listing more than one number after the color specifier:

RGB(230,230,230), 4, 80

Puts a white line at column 4 and column 80.

Be sure to pick a line color that will be visisble on your background. This color won't show up on the default background color in VS. This is the value for a light grey: RGB(221, 221, 221).

Here are the registry keys that I know of:

Visual Studio 2008: HKCU\Software\Microsoft\VisualStudio\9.0\Text Editor

Visual Studio 2005: HKCU\Software\Microsoft\VisualStudio\8.0\Text Editor

Visual Studio 2003: HKCU\Software\Microsoft\VisualStudio\7.1\Text Editor

link|flag
I didn’t know the original source, because a fellow co-worker told me how to do it. I added the blog as a reference. – xsl Sep 17 '08 at 15:31
Is there any way to enable this for only certain types of code? For instance, I may want it for C# files but not ASPX files. – Larsenal Dec 4 '08 at 17:28
1  
@DLarsen: No, it's not possible to do this only for certain types of code. This is an "all or nothing" trick. – Scott Dorman Dec 10 '08 at 19:37
Looks like the line appears in the output window, the search results, etc., as well as when editing code – OJW Dec 12 '08 at 14:07
@OJW: Yes, this does cause the line to appear in the output window, search results, etc. – Scott Dorman Dec 29 '08 at 19:19
show 1 more comment
vote up 2 vote down

The registry path for Visual Studio 2008 is the same, but with 9.0 as the version number:

HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\9.0\Text Editor
link|flag
Thank you, I added it to the post. – xsl Sep 17 '08 at 15:24
vote up 5 vote down

If you are a user of the free Visual Studio Express edition the right key is in HKEY_CURRENT_USER\Software\Microsoft\VCExpress\9.0\Text Editor {note the VCExpress instead of VisualStudio) but it works! :)

link|flag
Thank you, I added it to the post. – xsl Dec 5 '08 at 20:53
vote up 3 vote down

This works for SQL Server Management Studio also.

link|flag
Thank you, I added it to the post. – xsl Dec 5 '08 at 20:53
The link you added to the post gives me a page not found error. – Keith Walton Dec 6 '08 at 20:15
I changed the link, thank you for pointing that out. – xsl Dec 11 '08 at 10:21

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.