C
cj
I always have liked to print my code and look at it on paper. Used to
be I could print my code on nice tractor feed green bar paper. Now I
have to tape pages together. Oh well.
What really kills me is I used to use a utility called Snap in xbase
languages that drew lines connecting if, elses, endifs and other loops
etc so they were easy to see the nesting etc. Like this:
| +-if not (directory("i:\cust"))
| | thisform.label1.caption = 'network down, program exiting'
| | thisform.refresh()
| | wait "" timeout 3
<=========quit
| +-endif
| mretval = thisform.ftpcontrol2.connect(ftpserver)
| thisform.label1.caption = iif(mretval=0,'Succeeded','Failed')
| thisform.refresh()
|
| +-if mretval=0
| | mretval = thisform.ftpcontrol2.changedirectory('Rpt')
| | +-if mretval = 0
| | | thisform.label1.caption = 'CWD Succeeded'
|
I know it's kind of a long shot but, does anyone know of anything that
will allow me to print VB.net code like this? I'm using a ruler and pen
now!
be I could print my code on nice tractor feed green bar paper. Now I
have to tape pages together. Oh well.
What really kills me is I used to use a utility called Snap in xbase
languages that drew lines connecting if, elses, endifs and other loops
etc so they were easy to see the nesting etc. Like this:
| +-if not (directory("i:\cust"))
| | thisform.label1.caption = 'network down, program exiting'
| | thisform.refresh()
| | wait "" timeout 3
<=========quit
| +-endif
| mretval = thisform.ftpcontrol2.connect(ftpserver)
| thisform.label1.caption = iif(mretval=0,'Succeeded','Failed')
| thisform.refresh()
|
| +-if mretval=0
| | mretval = thisform.ftpcontrol2.changedirectory('Rpt')
| | +-if mretval = 0
| | | thisform.label1.caption = 'CWD Succeeded'
|
I know it's kind of a long shot but, does anyone know of anything that
will allow me to print VB.net code like this? I'm using a ruler and pen
now!