Hallo zusammen,
ich habe ein merkwürdiges Problem.
Wenn ich die idSSLIOHandlerSocketOpenSSL Komponente auf die Form ziehe
und dann unter Ereignisse schaue - sehe ich das Ereignis onStatusInfo.
Wenn ich idSLLIOHandlerSocketOpenSSL zur Laufzeit erstellen will
und der Instanz ein onStatusInfo Methode zuweisen will, dann wird mir
onStatusInfo nicht der Auswahl angeboten.
Zur Veranschauung zwei Bilder im Anhang.
Meine Frage ist nun - warum ist das so?
Wie kann ich das beheben?
Ich würde das Ereignis gerne nutzen, da es mehr Infos als onStatus leifert.
Ergänzung:
Delphi-Quellcode:
TIdSSLIOHandlerSocketOpenSSL = class(TIdSSLIOHandlerSocketBase)
protected
//..
fOnStatusInfo: TCallbackEvent;
FOnStatusInfoEx : TCallbackExEvent;
fOnGetPassword: TPasswordEvent;
fOnGetPasswordEx : TPasswordEventEx;
//..
public
//..
published
property OnStatusInfo: TCallbackEvent read fOnStatusInfo write fOnStatusInfo;
property OnStatusInfoEx: TCallbackExEvent read fOnStatusInfoEx write fOnStatusInfoEx;
property OnGetPassword: TPasswordEvent read fOnGetPassword write fOnGetPassword;
property OnGetPasswordEx : TPasswordEventEx read fOnGetPasswordEx write fOnGetPasswordEx;
end;
Ich habe weiterhin keine Ahnung, warum ich onStatusInfo nicht nutzen kann?
Die Sichtbarkeit von published ist die gleiche wie von public.
Ich D*
fSSLIOHandler : TIdSSLIOHandlerSocketBase;
nach
fSSLIOHandler: TIdSSLIOHandlerSocketOpenSSL.
schon funktioniert es..
Wird Zeit das Schluss ist für heute.
Grüße
Klaus