home *** CD-ROM | disk | FTP | other *** search
/ Delphi 4 Bible / Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso / source / DingX / About1.pas < prev    next >
Pascal/Delphi Source File  |  1998-04-05  |  544b  |  35 lines

  1. unit About1;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls, ExtCtrls, Buttons;
  8.  
  9. type
  10.   TDingButtonXAbout = class(TForm)
  11.     CtlImage: TSpeedButton;
  12.     NameLbl: TLabel;
  13.     OkBtn: TButton;
  14.     CopyrightLbl: TLabel;
  15.     DescLbl: TLabel;
  16.   end;
  17.  
  18. procedure ShowDingButtonXAbout;
  19.  
  20. implementation
  21.  
  22. {$R *.DFM}
  23.  
  24. procedure ShowDingButtonXAbout;
  25. begin
  26.   with TDingButtonXAbout.Create(nil) do
  27.     try
  28.       ShowModal;
  29.     finally
  30.       Free;
  31.     end;
  32. end;
  33.  
  34. end.
  35.