home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 December / Chip_2001-12_cd1.bin / zkuste / delphi / kompon / d345 / PPREV.ZIP / BenPreview / Demo / Test.dpr < prev    next >
Encoding:
Text File  |  2001-09-29  |  236 b   |  15 lines

  1. program Test;
  2.  
  3. uses
  4.   Forms,
  5.   TestPrev in 'TestPrev.pas' {Form1};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.Title := 'Test Print Preview';
  12.   Application.CreateForm(TForm1, Form1);
  13.   Application.Run;
  14. end.
  15.