Componentes.Terceros.Mustan.../official/1.7.0/EasyListview/Demos/TaskPanel/ReplacePanel.pas
david 778b05bf9f Importación inicial
- 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
2007-09-11 08:33:06 +00:00

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.