home *** CD-ROM | disk | FTP | other *** search
- unit MainForm;
-
- interface
-
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- IEButton, ExtCtrls, StdCtrls, Buttons;
-
- type
- TForm1 = class(TForm)
- IEButton1: TIEButton;
- IEButton2: TIEButton;
- IEButton3: TIEButton;
- Memo1: TMemo;
- IEButton4: TIEButton;
- procedure IEButton1Click(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- Form1: TForm1;
-
- implementation
-
- {$R *.DFM}
-
- procedure TForm1.IEButton1Click(Sender: TObject);
- begin
- MessageDlg('Wow Don''t you just love these great demos', mtInformation, [mbOK], 0);
- end;
-
- end.
-