git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.TMSSoftware@10 ccf39c52-e665-a648-be6a-52d81bcb5567
50 lines
1.9 KiB
ObjectPascal
50 lines
1.9 KiB
ObjectPascal
{***************************************************************************}
|
|
{ TTaskDialog component }
|
|
{ for Delphi & C++Builder }
|
|
{ version 1.2 }
|
|
{ }
|
|
{ written by TMS Software }
|
|
{ copyright © 2006 - 2007 }
|
|
{ Email : info@tmssoftware.com }
|
|
{ Web : http://www.tmssoftware.com }
|
|
{ }
|
|
{ The source code is given as is. The author is not responsible }
|
|
{ for any possible damage done due to the use of this code. }
|
|
{ The component can be freely used in any application. The complete }
|
|
{ source code remains property of the author and may not be distributed, }
|
|
{ published, given or sold in any form as such. No parts of the source }
|
|
{ code can be included in any other component or application without }
|
|
{ written authorization of the author. }
|
|
{***************************************************************************}
|
|
|
|
unit TaskDialogRegDE;
|
|
|
|
interface
|
|
{$I TMSDEFS.INC}
|
|
|
|
uses
|
|
Classes, TaskDialog, TaskDialogDE,
|
|
{$IFDEF DELPHI6_LVL}
|
|
{$IFDEF TMSDOTNET}
|
|
Borland.Vcl.Design.DesignIntf, Borland.Vcl.Design.DesignEditors
|
|
{$ENDIF}
|
|
{$IFNDEF TMSDOTNET}
|
|
DesignIntf, DesignEditors
|
|
{$ENDIF}
|
|
{$ELSE}
|
|
DsgnIntf
|
|
{$ENDIF}
|
|
;
|
|
|
|
procedure Register;
|
|
|
|
implementation
|
|
|
|
procedure Register;
|
|
begin
|
|
RegisterComponentEditor(TAdvTaskDialog,TTaskDialogEditor);
|
|
end;
|
|
|
|
end.
|
|
|