View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Clayman Clayman is offline
external usenet poster
 
Posts: 95
Default Grouping/Collapsing lines in VBA editor - xl2000

Rats!

Thanks, though!
--
Adios,
Clay Harryman


"Jim Thomlinson" wrote:

Nope...
--
HTH...

Jim Thomlinson


"Clayman" wrote:

Is it possible in the VBA editor to group and/or collapse nested code? Example:
For x=1 to Len(empname)
currchar=Mid$(empname,x,1)
If currchar=" " Then
do something
Else
do something else
End If
Next x

Collapse the if-endif code leaving only the following visible:

For x=1 to Len(empname)
currchar=Mid$(empname,x,1)

Next x

I've used this in HTML editors and it's wonderful.
--
Adios,
Clay Harryman