OK, OK, stop the eye-rolling about vbscript and classic ASP!
I still have to maintain a considerable amount of classic ASP (vbscript and wsh).
It would be VERY NICE if webuilder could provide code-collapse for vbscript.
As far as I'm concerned, no need to provide anything more than:
(a) collapsing for Function ... End Function
(b) collapsing for Sub ... End Sub
(c) collpasing for comments would be nice, but less important
Thanks for your consideration.
code collapse for vbscript/ASP
Moderator: kfury77
Forum rules
Please follow these guidelines when posting feature requests. This will help to increase the value of your contribution.
Please follow these guidelines when posting feature requests. This will help to increase the value of your contribution.
- Do not create new topics for already requested features. Add your comments to the existing feature request topics instead;
- Create separate topic for each feature suggestion. Do NOT post a number of non-related feature suggestions in a single topic;
- Give your topic a meaningful title. Do NOT create topics with meaningless titles, such as "My Suggestion" or "My Problem".
Re: code collapse for vbscript/ASP
These are advanced feature. Anyone else looking at this?
It would also be nice if someone can explain Collapsing code in English please?
It would also be nice if someone can explain Collapsing code in English please?
When in doubt, use Brute Force 

-
- Posts: 12
- Joined: Fri Aug 21, 2009 3:54 am
Re: code collapse for vbscript/ASP
mithcd, a "code collapse" feature converts this (in vbscript):
into something like this:
and you can then click on the plus sign (+) to expand the function. Depending on how fancy the code-callapser is, it might also be able to collapse sections of code (loops, etc.).
WeBuilder already knows how to do code collapse for various languages -- but not vbscript. It woudl be VERY NICE if WeBuilder could do at least the most basic level of collapse for vbscript (functions and subs would be great!).
Code: Select all
Function gargoo(arg1, arg2)
Dim x
x = (2 * arg1) + arg2
gargoo = x + 77
End Function
Code: Select all
+Function gargoo(arg1, arg2)
WeBuilder already knows how to do code collapse for various languages -- but not vbscript. It woudl be VERY NICE if WeBuilder could do at least the most basic level of collapse for vbscript (functions and subs would be great!).