home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 December / Chip_2001-12_cd1.bin / zkuste / delphi / kompon / d123456 / ANRMLB.ZIP / sample / sample.dpr < prev    next >
Text File  |  2001-09-03  |  196b  |  14 lines

  1. program Sample;
  2.  
  3. uses
  4.   Forms,
  5.   Sample1 in 'SAMPLE1.PAS' {Form1},
  6.   mlb2 in '..\OBJECT\MLB2.PAS';
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.Run;
  13. end.
  14.