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:

(*) 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.
