home *** CD-ROM | disk | FTP | other *** search
- 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.
-
-