* May 18th, 2005: Starting to develop AMXX-Edit v2 as a kind of open source

This commit is contained in:
Christian Hammacher
2005-05-18 20:53:06 +00:00
parent 3642cedd2b
commit dd6abc5487
19 changed files with 9817 additions and 0 deletions

32
editor/editor2/UnitfrmAbout.pas Executable file
View File

@ -0,0 +1,32 @@
unit UnitfrmAbout;
interface
uses
SysUtils, Windows, Messages, Classes, Graphics, Controls,
StdCtrls, ExtCtrls, Forms, ShellAPI, TFlatSpeedButtonUnit;
type
TfrmAbout = class(TForm)
pnlInfo: TPanel;
imgAMXX: TImage;
lblCopyright: TLabel;
lblComments: TLabel;
lblCoder: TLabel;
FlatSpeedButton1: TFlatSpeedButton;
procedure imgAMXXClick(Sender: TObject);
end;
var
frmAbout: TfrmAbout;
implementation
{$R *.DFM}
procedure TfrmAbout.imgAMXXClick(Sender: TObject);
begin
ShellExecute(Handle, 'open', 'http://www.amxmodx.org/', nil, nil, SW_SHOW);
end;
end.