home *** CD-ROM | disk | FTP | other *** search
- unit Unit2;
-
- interface
-
- uses
- SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
- Forms, Dialogs, TabNotBk, StdCtrls, Buttons, Unit3;
-
- type
- TScanHelp = class(TForm)
- TabbedNotebook1: TTabbedNotebook;
- Memo1: TMemo;
- Memo2: TMemo;
- Memo3: TMemo;
- Memo4: TMemo;
- BitBtn1: TBitBtn;
- BitBtn2: TBitBtn;
- procedure BitBtn2Click(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- ScanHelp: TScanHelp;
-
- implementation
-
- {$R *.DFM}
-
- procedure TScanHelp.BitBtn2Click(Sender: TObject);
- begin
- AboutBox.ShowModal;
- end;
-
- end.
-