I would have though i and j would be fine for loops and s for strings.
x and y for anything to do with co-ords as well.


I think the following is fine:

procedure DoSomethingorOther;
var
   s : string;
   i : Integer;
begin
   for i := 0 to Pred(someList.Count) do
   begin
      s := someList.Items[i];
      doSomething(s);   
   end;
end;


On Fri, 2004-09-24 at 12:41, [EMAIL PROTECTED] wrote:
> > Good practice (not always =) VCL source 
> 
> True, the VCL also uses _with_.
> 
> Each to there own - but globally condemned is a bit rich
> 
> > for multitudes of good reasons.
> 
> name some then
> 
> 
> What did you search on in google.
> _______________________________________________
> Delphi mailing list
> [EMAIL PROTECTED]
> http://ns3.123.co.nz/mailman/listinfo/delphi

_______________________________________________
Delphi mailing list
[EMAIL PROTECTED]
http://ns3.123.co.nz/mailman/listinfo/delphi

Reply via email to