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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top