home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2002 September / PCPlus_193_Laplink2000.iso / Prog / delphi / convertcalc / convert.dpr < prev   
Encoding:
Text File  |  2001-03-10  |  170 b   |  13 lines

  1. program convert;
  2.  
  3. uses
  4.   Forms,
  5.   CONV in 'CONV.PAS' {Conv2Form};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.CreateForm(TConv2Form, Conv2Form);
  11.   Application.Run;
  12. end.
  13.