home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programming Unleashed / Delphi_Programming_Unleashed_SAMS_Publishing_1995.iso / chap11 / addall / addall.dpr next >
Text File  |  1995-03-20  |  436b  |  22 lines

  1. program Addall;
  2. {
  3. Copyright 1994 by Charlie Calvert
  4. From Mastering Delphi published by Sams 
  5.  
  6. This program serves as a simplified adding
  7. machine. It works with long lists of numbers.
  8. You can "Put" up 2, 5 even 20 or 30 floating
  9. point numbers in the listbox and then press
  10. Calc to see their Sum.
  11. }
  12.  
  13. uses
  14.   Forms,
  15.   Main in 'MAIN.PAS' {Form1};
  16.  
  17. begin
  18.   Application.CreateForm(TForm1, Form1);
  19.   Application.Run;
  20. end.
  21.  
  22.