home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Programming Unleashed
/
Delphi_Programming_Unleashed_SAMS_Publishing_1995.iso
/
chap11
/
addall
/
addall.dpr
next >
Wrap
Text File
|
1995-03-20
|
436b
|
22 lines
program Addall;
{
Copyright 1994 by Charlie Calvert
From Mastering Delphi published by Sams
This program serves as a simplified adding
machine. It works with long lists of numbers.
You can "Put" up 2, 5 even 20 or 30 floating
point numbers in the listbox and then press
Calc to see their Sum.
}
uses
Forms,
Main in 'MAIN.PAS' {Form1};
begin
Application.CreateForm(TForm1, Form1);
Application.Run;
end.