amxmodx/editor/studio/UnitfrmParamEdit.pas
Christian Hammacher 73ba5d1644 Updated some captions
Updated the Autocomplete-Check function
Prepared AMXX-Studio for release
2006-01-11 18:02:42 +00:00

29 lines
480 B
ObjectPascal

unit UnitfrmParamEdit;
interface
uses
SysUtils, Windows, Messages, Classes, Graphics, Controls,
StdCtrls, ExtCtrls, Forms, TBXDkPanels, SpTBXDkPanels, mbTBXMemo,
SpTBXEditors;
type
TfrmParamEdit = class(TForm)
txtInformation: TmbTBXMemo;
cmdOk: TSpTBXButton;
cmdCancel: TSpTBXButton;
lblFunction: TLabel;
txtFunction: TSpTBXEdit;
lblItems: TLabel;
Label1: TLabel;
end;
var
frmParamEdit: TfrmParamEdit;
implementation
{$R *.DFM}
end.