home *** CD-ROM | disk | FTP | other *** search
- {'Printer Preview' .Pas Module.
-
- CopyRight Belmont Imaging 1996.
-
- Demo Program by:- Andrew Hutchison 100022,1047@Compuserve.com
-
- All rights reserved. No part of this program may be photocopied, reproduced,
- translated to another programming language or transported to any computer system
- without the prior written consent of Belmont Imaging.
-
- This Demo is provided for use by Media Architects in there Delphi Demo's only.
- The unit must not be re-used without the permission of Media Architects or Belmont
- Imaging. Copyright Belmont Imaging 1996. It is supplied AS-IS. Use at your
- own risk.}
-
- program Print;
-
- uses
- Forms,
- UPrntPvw in 'UPrntPvw.pas' {TE_PrintPreview},
- UPBDISK in 'Upbdisk.pas' {PB_DiskControl32V1};
-
- {$R *.RES}
-
- begin
- Application.Initialize;
- Application.CreateForm(TTE_PrintPreview, TE_PrintPreview);
- Application.CreateForm(TPB_DiskControl32V1, PB_DiskControl32V1);
- Application.Run;
- end.
-