Registriert seit: 16. Jan 2004
Ort: Bendorf
5.219 Beiträge
Delphi 10.2 Tokyo Professional
|
Re: Procedure Problem
4. Aug 2006, 20:08
Naja ich erklärs nochmal anders:
Delphi-Quellcode:
type
TKlasse = class(Egal)
private
A: TProcedure;
public
constructor Create(...); override;
procedure A; // Da soll dann die Procedure stehn die im Konstruktor zugewisen wurde...
end;
constructor Create(...);
begin
inherited Create(...);
A:= *Irgendwas* // Aber oft verschieden
...
end;
Michael "Programmers talk about software development on weekends, vacations, and over meals not because they lack imagination,
but because their imagination reveals worlds that others cannot see."
|