home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 May / VPR9705A.ISO / VPR_DATA / PROGRAM / Delphi / Sample / USEABOXF.PAS < prev   
Pascal/Delphi Source File  |  1997-03-02  |  535b  |  35 lines

  1. unit UseABoxF;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   Menus, AboutBox;
  8.  
  9. type
  10.   TForm1 = class(TForm)
  11.     AboutBox1: TAboutBox;
  12.     MainMenu1: TMainMenu;
  13.     Help1: TMenuItem;
  14.     About1: TMenuItem;
  15.     procedure About1Click(Sender: TObject);
  16.   private
  17.     { Private 宣言 }
  18.   public
  19.     { Public 宣言 }
  20.   end;
  21.  
  22. var
  23.   Form1: TForm1;
  24.  
  25. implementation
  26.  
  27. {$R *.DFM}
  28.  
  29. procedure TForm1.About1Click(Sender: TObject);
  30. begin
  31.   AboutBox1.Execute;
  32. end;
  33.  
  34. end.
  35.