Source code formating with comments
From: Richard Marchand (richardm_at_nowhere.com)
Date: 03/28/05
- Next message: eshipman: "TToolbar -> TToolBar97 or ???"
- Previous message: eshipman: "Re: looking for a normal enhanced grid control !"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Mon, 28 Mar 2005 16:44:42 -0500
I am looking for a program to format my delphi 7 source code. I already use
a freeware program for this but I would like this formatter not only to
change the horizontal spacing but also add comments to delimit the limits of
loops. For example:
For I := 1 to 1000 do begin
[...]
for J := 1 to 1000 do begin
[...]
end;
end;
would be transformed into something like:
For I := 1 to 1000 do begin
[...]
while x = y do begin
[...]
end; {while x = y}
end; {for I := 1 to 1000}
Any suggestion?
- Next message: eshipman: "TToolbar -> TToolBar97 or ???"
- Previous message: eshipman: "Re: looking for a normal enhanced grid control !"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|