Autor Beitrag
sPeeD2k5
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starontopic star
Beiträge: 72



BeitragVerfasst: Mi 22.07.09 12:37 
Hallo Leute...

Habe folgendes Problem: Seitdem ich auf Indy10 umgestiegen bin, habe ich Probleme mit der IRC Komponente... er reagiert einfach nicht auf onmessage ereignisse.. hier mal mein kleiner code:

ausblenden Delphi-Quelltext
1:
2:
3:
4:
5:
6:
procedure TForm1.IdIRC1PrivateMessage(ASender: TIdContext; const ANicknameFrom,
  AHost, ANicknameTo, AMessage: string);
begin
if pos('!test',aMessage) > 0 then
  idirc1.Say('#test','test erfolgreich');
end;


Mit indy9 ging es problemlos, hat jemand eine idee?
Xentar
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starofftopic star
Beiträge: 2077
Erhaltene Danke: 2

Win XP
Delphi 5 Ent., Delphi 2007 Prof
BeitragVerfasst: Mi 22.07.09 12:42 
Hast du mal einen Haltepunkt gesetzt?
Ist das Event noch korrekt zugewiesen?

_________________
PROGRAMMER: A device for converting coffee into software.
sPeeD2k5 Threadstarter
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starontopic star
Beiträge: 72



BeitragVerfasst: Mi 22.07.09 12:49 
Inwiefern korrekt zugewiesen?
Xentar
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starofftopic star
Beiträge: 2077
Erhaltene Danke: 2

Win XP
Delphi 5 Ent., Delphi 2007 Prof
BeitragVerfasst: Mi 22.07.09 13:24 
Naja, ob das Ereignis noch zugewiesen ist, oder ob das Ereignis OnMessage "leer" ist.

_________________
PROGRAMMER: A device for converting coffee into software.
sPeeD2k5 Threadstarter
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starontopic star
Beiträge: 72



BeitragVerfasst: Mi 22.07.09 13:50 
ist korrekt zugewiesen, habs wie gewohnt mit einem doppelklick erstellt... also das feld ist nicht leer ;) sonst ne idee?
Xentar
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starofftopic star
Beiträge: 2077
Erhaltene Danke: 2

Win XP
Delphi 5 Ent., Delphi 2007 Prof
BeitragVerfasst: Mi 22.07.09 14:01 
Was ist beim Haltepunkt rausgekommen?
Wird dort überhaupt angehalten? Wenn ja, steht in AMessage irgendwas drin?

_________________
PROGRAMMER: A device for converting coffee into software.
sPeeD2k5 Threadstarter
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starontopic star
Beiträge: 72



BeitragVerfasst: Mi 22.07.09 14:04 
nein da wird nicht angehalten.... :(

---Moderiert von user profile iconNarses: Beiträge zusammengefasst---

irgndwie scheint er allgemein auf keine events zu reagieren...

ausblenden Delphi-Quelltext
1:
2:
3:
4:
procedure TForm1.IdIRC1Raw(ASender: TIdContext; AIn: Boolean; AMessage: string);
begin
listbox1.Items.Add(AMessage);
end;


tut sich auch nichts :(