Code Window Usage

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all,

How to make the code window display only one sub procedure instead of
multiple?
Just like in VB6.
Thank you

Clara
 
clara said:
How to make the code window display only one sub procedure instead of
multiple?
Just like in VB6.

This view is unfortunately not supported.
 
Hi all,

How to make the code window display only one sub procedure instead of
multiple?
Just like in VB6.
Thank you

Clara

I'm not sure about mimicking the VB6 style, as I never used that
feature, but here's what I do. I use the outlining functionality of
the Visual Studio IDE and keep all methods collapsed. Then, when I
work on a method I simply expand it, which effectively "hides" the
other methods. Also, if you want to hide groups of methods/fields/
properties then you can use the #region preprocessor command.

Thanks,

Seth Rowe
 
Back
Top