home *** CD-ROM | disk | FTP | other *** search
/ Mastering Visual Basic 5 / MasteringVisualBasic5.iso / olympus / ik32_15t / delphi2.shr / PRINT.DPR < prev    next >
Encoding:
Text File  |  1996-08-01  |  948 b   |  31 lines

  1. {'Printer Preview' .Pas Module.
  2.  
  3. CopyRight Belmont Imaging 1996.
  4.  
  5. Demo Program by:- Andrew Hutchison 100022,1047@Compuserve.com
  6.  
  7. All rights reserved.  No part of this program may be photocopied, reproduced,
  8. translated to another programming  language or transported to any computer system
  9. without the prior written consent of Belmont Imaging.
  10.  
  11. This Demo is provided for use by Media Architects in there Delphi Demo's only.
  12. The unit must not be re-used without the permission of Media Architects or Belmont
  13. Imaging. Copyright Belmont Imaging 1996.  It is supplied AS-IS. Use at your
  14. own risk.}
  15.  
  16. program Print;
  17.  
  18. uses
  19.   Forms,
  20.   UPrntPvw in 'UPrntPvw.pas' {TE_PrintPreview},
  21.   UPBDISK in 'Upbdisk.pas' {PB_DiskControl32V1};
  22.  
  23. {$R *.RES}
  24.  
  25. begin
  26.   Application.Initialize;
  27.   Application.CreateForm(TTE_PrintPreview, TE_PrintPreview);
  28.   Application.CreateForm(TPB_DiskControl32V1, PB_DiskControl32V1);
  29.   Application.Run;
  30. end.
  31.