Einzelnen Beitrag anzeigen

Benutzerbild von Jens Schumann
Jens Schumann

Registriert seit: 27. Apr 2003
Ort: Bad Honnef
1.644 Beiträge
 
Delphi 2009 Professional
 
#2

Re: Ereignisbehandlungroutine zuweisen?!

  Alt 29. Okt 2003, 09:49
Hallo Stevie,
so sollte es funktionieren
Delphi-Quellcode:
Type

 TMyKomop = class(TComponent)
 private
    FSub : TComponent;
    function GetOnExecute: TNotifyEvent;
    procedure SetOnExecute(const Value: TNotifyEvent);
 public
   property OnSubExecute : TNotifyEvent read GetOnExecute write SetOnExecute;
 end;

implementation

{ TMyKomop }

function TMyKomop.GetOnExecute: TNotifyEvent;
begin
  Result:=FSub.OnExecute;
end;

procedure TMyKomop.SetOnExecute(const Value: TNotifyEvent);
begin
  FSub.OnExecute:=Value;;
end;

end.
  Mit Zitat antworten Zitat