home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 March / Chip_1999-03_cd.bin / zkuste / delphi / INFO / DI9806SB.ZIP / Sctest.dpr < prev    next >
Text File  |  1997-12-21  |  291b  |  15 lines

  1. program Sctest;
  2.  
  3. uses
  4.   Forms,
  5.   Scmain in 'SCMAIN.PAS' {SeatCheckTestFrm},
  6.   Sclogin in 'SCLOGIN.PAS' {PasswordDlg};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TSeatCheckTestFrm, SeatCheckTestFrm);
  12.   Application.CreateForm(TPasswordDlg, PasswordDlg);
  13.   Application.Run;
  14. end.
  15.