Einzelnen Beitrag anzeigen

MasterC

Registriert seit: 9. Jan 2004
Ort: Krefeld
369 Beiträge
 
Delphi 2005 Personal
 
#1

Ist an dem Code was falsch?

  Alt 19. Okt 2004, 21:31
Hi,

kann es sein das in dem Code ein Fehler drin ist?

Delphi-Quellcode:
function FindChannelWindow(channel: string; server: Tserverform): Tmsgform;
var
  i: Integer;
begin
  for i := 0 to Application.ComponentCount-1 do begin
    if (Application.Components[i] is Tmsgform) then begin
      if ((Application.Components[i] as Tmsgform).channel = channel) and ((Application.Components[i] as Tmsgform).Server = server) then Result := (Application.Components[i] as Tmsgform);
    end;
  end;
end;
Das ganze funktioniert nämlich nicht ganz.

MFG Chris.
Christian H.
www.Future-Coding.de
  Mit Zitat antworten Zitat