Demonstrates how to use FOR loop in Delphi
Simple Borland Delphi tutorial demonstrate how to do FOR LOOP. Simple form button click event run the FOR LOOP.
Bookmark:
Demonstrates how to use FOR loop in Delphi
This example demonstrates how to use FOR loop in Delphi.
In this example simply click on RUN button to execute FOR loop.
procedure TForm1.Button2Click(Sender: TObject); Var V1, V2 : Variant; N1, N2, Count : Integer; begin { Clear the memo before adding numbers } Memo1.Lines.Clear; V1:=Edit1.Text; V2:=Edit2.Text; { Convert variant to integers } N1:=Integer(V1); N2:=Integer(V2); { Use FOR loop to add numbers to memo } For Count:=N1 to N2 Do Memo1.Lines.Add(IntToStr(Count)); end;
Download This Delphi Tutorials.
Download materials for this article (Delphi - Tutorials)
how-to-use-FOR-loop.zip
File size: 4 KB, File type: zip
Total downloads: 203, Upload date: February 02 - 2009
JAWAD ABU GHAZALEH :: March 01-2011 :: 12:48 PM
NICE BUT WE NEED MOREĀ DETAIL TO USED IN THE PROGRAME