Registriert seit: 4. Nov 2004
Ort: Basel (CH)
76 Beiträge
Delphi 2007 Professional
|
Event mit Parameter der sich selbst enthält
27. Mai 2005, 13:22
Wie kann ich folgendes Problem bewerkstelligen?
Delphi-Quellcode:
type
TSZOnFinishEvent = procedure (SZTestClass: TSZTestClass) of Object; // Benötigt die classe TSZTestClass, die es noch nicht gibt
TSZTestClass = class(TComponent)
private
FOnFinishEvent: TSZOnFinishEvent; // Benötigt das Object TSZOnFinishEvent, welches es nicht gibt,
// sofern ich das Problem oben löse und das Objekt nach der Klassen-
// definition definiere...
end;
Besten Dank im Voraus
Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it.
|