home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 December / Chip_2001-12_cd1.bin / zkuste / delphi / kompon / d345 / PPREV.ZIP / BenPreview / Gopage.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2000-11-10  |  428 b   |  31 lines

  1. unit Gopage;
  2.  
  3. interface
  4.  
  5. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
  6.   StdCtrls, ExtCtrls, Spin;
  7.  
  8. type
  9.   TGoPageForm = class(TForm)
  10.     OKBtn: TBitBtn;
  11.     CancelBtn: TBitBtn;
  12.     Bevel1: TBevel;
  13.     PageNum: TSpinEdit;
  14.   private
  15.     { Private declarations }
  16.   public
  17.     { Public declarations }
  18.   end;
  19.  
  20. var
  21.   GoPageForm: TGoPageForm;
  22.  
  23. implementation
  24.  
  25. {$R *.DFM}
  26.  
  27. end.
  28.  
  29.  
  30.  
  31.