Registriert seit: 26. Mai 2004
3.159 Beiträge
|
Re: Probleme mit Procedure die ein Frame aufrufen soll
4. Jan 2010, 17:38
Hallo,
so kannst du es machen:
Delphi-Quellcode:
type
TFrameClass = class of TFrame;
procedure test(a: TFrameClass);
begin
;
end;
// Aufruf:
test(TFrame);
»Remember, the future maintainer is the person you should be writing code for, not the compiler.« (Nick Hodges)
|