amxmodx/editor/studio/UnitfrmParamEdit.pas
Christian Hammacher f2b8b82515 Component update (whoa I hate delphi reinstallations)
Added another feature for the Code-Explorer
2006-03-06 19:47:22 +00:00

29 lines
495 B
ObjectPascal

unit UnitfrmParamEdit;
interface
uses
SysUtils, Windows, Messages, Classes, Graphics, Controls,
StdCtrls, ExtCtrls, Forms, TBXDkPanels, SpTBXDkPanels, mbTBXMemo,
SpTBXEditors, SpTBXControls;
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.