unit dllquery;
interface
uses
System.SysUtils, System.Classes, Data.DB, MemDS, DBAccess, MyAccess, AboutOwn;
type
TdllQuery = class(TMyQuery)
private
{ Private-Deklarationen }
fActiveOnStart : Boolean;
fAbout
: String;
procedure init;
protected
{ Protected-Deklarationen }
public
{ Public-Deklarationen }
constructor create(AOwner : TComponent);
Destructor destroy;
published
{ Published-Deklarationen }
property About
: String read FAbout write FAbout stored False;
property ActiveOnStart : Boolean read fActiveOnStart write fActiveOnStart;
end;
implementation
{ TdllQuery }
procedure TdllQuery.init;
begin
FAbout := 'Version 1.0';
end;
constructor TdllQuery.create(AOwner : TComponent);
begin
//
inherited create(AOwner);
if fActiveOnStart then active := true
else active := false;
init;
end;
Destructor TdllQuery.destroy;
begin
inherited destroy;
end;
end.