|
-
May 9th, 2003, 10:09 AM
#1
Thread Starter
Hyperactive Member
Can the .Net IDE do this?
Is there anyways to HIDE the code I am not working on? Like in the old VB6 IDE, where you can just chose the routine/function you are working with from the top and only have that code portion displayed? I don't like the full page code display even if you can collapse/expand it in the .Net IDE, I just can't get used to it. I looked through the options but I can't find any options that resemble this kind of option. So I'm wondering if it's even an option?
-
May 9th, 2003, 12:45 PM
#2
Addicted Member
you can use collapsible 'regions' to neatly organise your written code if that's what you mean. Type
Code:
#Region "Class Functions"
public function SomeFunction as string
return "SomeFunction"
end function
#End Region
'
#Region "Class Variables"
private someVar as string
#End Region
and expand/collapse the regions using the plus/minus.
-
May 9th, 2003, 12:46 PM
#3
PowerPoster
Not that I have seen, but you can also use #region #endregion tags to help combine sections of code for collapse.
-
May 9th, 2003, 12:47 PM
#4
PowerPoster
-
May 9th, 2003, 12:50 PM
#5
Addicted Member
Whoooops...just looking at your post again, i get the impression you already know this. I SHOULD really read things through but my attention span is just so sho
-
May 9th, 2003, 12:52 PM
#6
Addicted Member
DAMN hellswraith...you just destroyed my neatly organised response
-
May 9th, 2003, 12:53 PM
#7
I don't believe this is an option, at least it isn't in 2002. Perhaps someone with 2003 can tell us if they added it. They added an option in 2003 to show the method divider lines like vb6.
-
May 9th, 2003, 12:58 PM
#8
Addicted Member
...I don't believe this is an option
as in regions? yes they are available in 2002
-
May 9th, 2003, 01:04 PM
#9
Thread Starter
Hyperactive Member
Hmm, Ok I guess I just have to get used to the expand/collapse regions then.. Ah well mabye in the 2004 edition the'll do it
-
May 9th, 2003, 01:27 PM
#10
Originally posted by powdir
as in regions? yes they are available in 2002
No not regions, the view by Procedure only option from VB6.
-
May 9th, 2003, 01:53 PM
#11
Frenzied Member
Can't you use Edit>Outllining>Hide Selection ?
'Heading for the automatic overload'
Marillion, Brave, The Great Escape, 1994
'How will WE stand the FIRE TOMORROW?'
Eloy, Silent Cries and Mighty Echoes, The Vision - Burning, 1979
-
May 9th, 2003, 02:59 PM
#12
Sleep mode
If I'm not wrong , I've pressed that by mistake..lol . It's an option in outline menu that bookmark a function or sub . (too lazy to try that again )
-
May 9th, 2003, 05:36 PM
#13
Thread Starter
Hyperactive Member
Can't you use Edit>Outllining>Hide Selection ?
Yes and No, you can hide it like that but it's just not the same as the VB6 view prodecure feature.. You still get a box [. . .] on that line you hid it and well, and with my self inflicted compulsive obsession disorder It just doesn't match up to the real thing... (grin)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|