ich hab jetzt mal folgendes konstruiert:
Delphi-Quellcode:
type
TProcContainer = class
private
fProc1: TNotifyEvent;
published
property TrackChange: TNotifyEvent read fProc1 write fProc1;
end;
implementation
var WinAmpCtr1: TWinAmpCtr;
procedure fProc1;
begin;
showmessage('Test');
end;
procedure init;
begin;
WinAmpCtr1 := TWinAmpCtr.create(nil);
WinAmpCtr1.OnPlayChange:=TProcContainer.TrackChange;
end;
wieso geht das jetzt nicht? Compiler mault rum mit "Methodenbezeichner Erweartet");