home *** CD-ROM | disk | FTP | other *** search
- unit Gopage;
-
- interface
-
- uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
- StdCtrls, ExtCtrls, Spin;
-
- type
- TGoPageForm = class(TForm)
- OKBtn: TBitBtn;
- CancelBtn: TBitBtn;
- Bevel1: TBevel;
- PageNum: TSpinEdit;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- GoPageForm: TGoPageForm;
-
- implementation
-
- {$R *.DFM}
-
- end.
-
-
-
-