hide the code?

xzibited2

Active member
Joined
Jul 9, 2008
Messages
26
Programming Experience
1-3
I'm going to kick myself as soon as someone posts the answer to this...maybe it's just because I haven't had my coffee yet but I can't remember the code used to hide multiple lines of code.

Example:

VB.NET:
<<Something here

Private Sub fun1()
funstuffhere.show()
End Sub

Private Sub fun2()
morefunstuffhere.show()
End Sub

<<Something else here
 
If you are talking about commenting code, then select all the lines you want to comment and then Ctrl+K , Ctrl+C to uncomment multiple lines Ctrl+K , Ctrl+U
 
demausdauth - Not commenting out. I'm actually looking to hide the code. It's exactly what happens when you click the little box with the "-" in it next to a Sub, only with what I'm thinking about you can enclose multiple subs within it. Sorry I'm doing a horrible job at describing this...
 
Back
Top