home *** CD-ROM | disk | FTP | other *** search
/ CD Shareware Magazine 1996 December / CD_shareware_12-96.iso / WIN / Programa / IEBTN102.ZIP / MAINFORM.PAS < prev   
Encoding:
Pascal/Delphi Source File  |  1996-09-02  |  670 b   |  36 lines

  1. unit MainForm;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   IEButton, ExtCtrls, StdCtrls, Buttons;
  8.  
  9. type
  10.   TForm1 = class(TForm)
  11.     IEButton1: TIEButton;
  12.     IEButton2: TIEButton;
  13.     IEButton3: TIEButton;
  14.     Memo1: TMemo;
  15.     IEButton4: TIEButton;
  16.     procedure IEButton1Click(Sender: TObject);
  17.   private
  18.     { Private declarations }
  19.   public
  20.     { Public declarations }
  21.   end;
  22.  
  23. var
  24.   Form1: TForm1;
  25.  
  26. implementation
  27.  
  28. {$R *.DFM}
  29.  
  30. procedure TForm1.IEButton1Click(Sender: TObject);
  31. begin
  32.   MessageDlg('Wow Don''t you just love these great demos', mtInformation, [mbOK], 0);
  33. end;
  34.  
  35. end.
  36.