home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 January / Chip_1999-01_cd.bin / zkuste / delphi / D1 / PRINTP43.ZIP / UNIT1.PAS < prev    next >
Pascal/Delphi Source File  |  1995-11-02  |  2KB  |  71 lines

  1. unit Unit1;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Gauges, StdCtrls, ExtCtrls, Printers, Printpag, Printcha;
  8.  
  9. type
  10.   TForm1 = class(TForm)
  11.     Button1: TButton;
  12.     Button2: TButton;
  13.     Gauge1: TGauge;
  14.     CheckBox1: TCheckBox;
  15.     CheckBox2: TCheckBox;
  16.     CheckBox3: TCheckBox;
  17.     ScrollBar1: TScrollBar;
  18.     Label1: TLabel;
  19.     Label2: TLabel;
  20.     Label3: TLabel;
  21.     Label4: TLabel;
  22.     PrintPage1: TPrintPage;
  23.     AddPrintChart1: TAddPrintChart;
  24.     procedure Button1Click(Sender: TObject);
  25.     procedure Button2Click(Sender: TObject);
  26.     procedure PrintPage1UpdatePrintStatus(Sender: TObject);
  27.   private
  28.     { Private declarations }
  29.   public
  30.     { Public declarations }
  31.   end;
  32.  
  33. var
  34.   Form1: TForm1;
  35.  
  36. implementation
  37. uses Unit2;
  38.  
  39. {$R *.DFM}
  40.  
  41. procedure TForm1.PrintPage1UpdatePrintStatus(Sender: TObject);
  42. begin
  43.   Gauge1.Progress := Gauge1.Progress + 1;
  44. end;
  45.  
  46. procedure TForm1.Button1Click(Sender: TObject);
  47. begin
  48.   Form2.Show;
  49. end;
  50.  
  51. procedure TForm1.Button2Click(Sender: TObject);
  52. begin
  53.     PrintPage1.Source := Form2;
  54.     PrintPage1.PreviewMenu := CheckBox1.Checked;
  55.     PrintPage1.PreviewRulers := CheckBox2.Checked;
  56.        { need uses Printers to access Orientation }
  57.     if CheckBox3.Checked then Printer.Orientation := poLandscape
  58.       else Printer.Orientation := poPortrait;
  59.     PrintPage1.PreviewScale := 4.0 - (ScrollBar1.Position / 10);
  60.     if PrintPage1.Preview = mrPrint then
  61.     begin
  62.      Gauge1.Progress := 0;
  63.      Gauge1.MaxValue := 23; 
  64.      Gauge1.Visible := true;
  65.      PrintPage1.Print;
  66.      Gauge1.Visible := false;
  67.     end;
  68. end;
  69.  
  70. end.
  71.