- Mustangpeak Common Library - 1.7.0 - EasyListview - 1.7.0 git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.Mustangpeak@2 60b41242-d4b9-2247-b156-4ccd40706241
59 lines
2.3 KiB
ObjectPascal
59 lines
2.3 KiB
ObjectPascal
unit SearchPanel;
|
|
|
|
// **********************************************************************
|
|
//
|
|
// Create a new Task Panel from the Object Repository.
|
|
//
|
|
// File > New > Other...
|
|
// The select the "New" tab and double click on the "EasyListview TaskPanel" icon
|
|
//
|
|
// **********************************************************************
|
|
|
|
interface
|
|
|
|
|
|
uses
|
|
Windows,
|
|
Messages,
|
|
SysUtils,
|
|
Classes,
|
|
Controls,
|
|
Forms,
|
|
Dialogs,
|
|
Graphics,
|
|
EasyTaskPanelForm,
|
|
StdCtrls,
|
|
ExtCtrls;
|
|
|
|
|
|
type
|
|
TEasyTaskPanelFormSearch = class(TEasyTaskPanelForm)
|
|
Edit1: TEdit;
|
|
Label1: TLabel;
|
|
Label2: TLabel;
|
|
Label3: TLabel;
|
|
Label4: TLabel;
|
|
ComboBox1: TComboBox;
|
|
Button1: TButton;
|
|
Button2: TButton;
|
|
procedure EasyTaskPanelFormShow(Sender: TObject);
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
EasyTaskPanelFormSearch: TEasyTaskPanelFormSearch;
|
|
|
|
implementation
|
|
|
|
{$R *.dfm}
|
|
|
|
|
|
procedure TEasyTaskPanelFormSearch.EasyTaskPanelFormShow(Sender: TObject);
|
|
begin
|
|
ComboBox1.ItemIndex := 0;
|
|
end;
|
|
|
|
end. |