home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 24 / CD_ASCQ_24_0995.iso / vrac / apdtr.zip / TERMDEMO.DPR < prev    next >
Text File  |  1995-05-22  |  278b  |  15 lines

  1. program Termdemo;
  2.  
  3. uses
  4.   Forms,
  5.   Tdmain in 'TDMAIN.PAS' {MainForm},
  6.   AdXPort in 'ADXPORT.PAS' {ComPortOptions};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TMainForm, MainForm);
  12.   Application.CreateForm(TComPortOptions, ComPortOptions);
  13.   Application.Run;
  14. end.
  15.