- 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
49 lines
2.1 KiB
ObjectPascal
49 lines
2.1 KiB
ObjectPascal
unit ReplacePanel;
|
|
|
|
// **********************************************************************
|
|
//
|
|
// 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, MPCommonObjects, EasyListview, ExtCtrls;
|
|
|
|
|
|
type
|
|
TEasyTaskPanelFormReplace = class(TEasyTaskPanelForm)
|
|
Label1: TLabel;
|
|
Button1: TButton;
|
|
Edit1: TEdit;
|
|
RadioGroup1: TRadioGroup;
|
|
Label2: TLabel;
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
EasyTaskPanelFormReplace: TEasyTaskPanelFormReplace;
|
|
|
|
implementation
|
|
|
|
{$R *.dfm}
|
|
|
|
|
|
end.
|