In Visual Studio C# (2008) ctl-M-L expand all the regions. There's also a setting in Text Editor->C# ->Advanced to not collapse during file open. I see no equivalents in VB.NET.

Is there a way to expand all the regions, not just the one which has focus in VB.NET.

Or a macro or add-in that does it? I just hate not being able to see all the code.

link|improve this question

59% accept rate
Perfect. Was just wondering how to prevent VS from collapsing all regions by default :) – Ian Oxley Apr 21 '11 at 8:59
feedback

6 Answers

up vote 5 down vote accepted

I reset the settings and it's still not working. It works in C# but not vb.net. The only thing working in vb.net is collapsing/expanding the region the cusrosr is on via ctril-M-M. I have read posts on the web about others having the same issue like this one although it pertains to VS 2005.

http://www.eggheadcafe.com/forumarchives/NETVisualBasic/Oct2005/post24342618.asp

This solution worked for me which involves using a Macro. (If someone created a macro, then the problem is real. I am sure region functionality existed in VS 2005)

https://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=5941&lngWId=10

link|improve this answer
feedback

That's pretty odd. The default profile settings for VB.Net and C# should bind the outlining functions to CTL+M + CTL+L combos.

It's possible that your profile is in a weird state. Try reseting your profile to VB.Net settings and see if that fixes the problem

Tools -> Import / Export Settings -> Reset All Settings -> VB.Net Profile

link|improve this answer
feedback

If you are willing to remove regions you can try this:

Ctrl+F

  • Quick Replace
  • Find Options
  • Use: Regular Expressions

Find What:

^.[#]region.$

and

^.[#]endregion.$

Replace with:

[an empty string]

link|improve this answer
feedback

In VB.Net, do a Search and Replace and select Use Hidden and Use Regex:

Replace:

^.*\#(end)*(:Wh)*region.*\n

With:

link|improve this answer
feedback

In the Edit Menu, the Outlining submenu you have all the options. Including Toggle All Outlining (ctrl M-L by default).

Maybe your key mappings were altered.

You can even select Edit->Outlinging->Stop Outlining if you so desire.

link|improve this answer
feedback

I wrote an extension to do this (and more), and it works for VB and C#. See this answer for more info:

Hiding the regions in Visual Studio

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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