- Updated Calltips

- Fixed bugs in register plugin function
- Added "Autocomplete Check", allows you to customize autocomplete items
- Added a new dialog (the parameter info dialog) to the loadinfo record/struct
- Added a new unit called UnitACCheck.pas
This commit is contained in:
Christian Hammacher
2005-11-18 23:35:58 +00:00
parent 778c2080b0
commit 23fb93a3cc
14 changed files with 692 additions and 49 deletions

View File

@ -0,0 +1,27 @@
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;
end;
var
frmParamEdit: TfrmParamEdit;
implementation
{$R *.DFM}
end.