Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Netzwerke (https://www.delphipraxis.net/14-netzwerke/)
-   -   Delphi IdIPWatch (https://www.delphipraxis.net/125048-idipwatch.html)

Xster 29. Nov 2008 21:58


IdIPWatch
 
ähhm wo finde ich die IdIPWatch Komponente.

(ich benutze Turbo delphi explorer)

haentschman 29. Nov 2008 22:31

Re: IdIPWatch
 
Hallo... die Indys sind doch auch beim TurboDelphi Explorer dabei oder ?

PS: Bitte doch mal einen Admin um verschieben...Falsche Sparte :wink:

Die Muhkuh 29. Nov 2008 22:33

Re: IdIPWatch
 
Du wirst sie bloß nicht in der Komponentenliste sehen. Du musst die benötigte Unit "IdIpWatch" einbinden und danach eine Komponente vom Typ TIdIPWatch dynamisch erstellen.

Xster 29. Nov 2008 22:39

Re: IdIPWatch
 
wie mache ich das ich brauche sie ganz dringend auf meinem Formular

bitte helft mir

toms 29. Nov 2008 22:41

Re: IdIPWatch
 
Zitat:

Zitat von Xster
wie mache ich das ich brauche sie ganz dringend auf meinem Formular

bitte helft mir

Warum dringend auf dem Formular?

Dynamisch erzeugen:

Delphi-Quellcode:
var
  IdIPWatch1: TIdIPWatch;

  IdIPWatch1 := TIdIPWatch.Create(Self);
  with IdIPWatch1 do
  begin
    Name := 'IdIPWatch1';
    Active := False;
  end;

Xster 29. Nov 2008 22:46

Re: IdIPWatch
 
ich brauche sie um einen chat zu programmieren!

Sir Rufo 29. Nov 2008 22:53

Re: IdIPWatch
 
UDP Chat-Tutorial


Alle Zeitangaben in WEZ +1. Es ist jetzt 14:24 Uhr.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024 by Thomas Breitkreuz