PDA

View Full Version : Just get IP Address


hackstes
10-14-2004, 06:06 AM
Hi,

how can i work with the System.GetLanInfo ? I just want a Dialog Box which contains the IP Address of the machine.
How can i access this value ?
Thanks for your help.

Greetings,
hackstes

CWRIGHT
10-14-2004, 07:48 AM
Try this:

tLanInfo = System.GetLANInfo();
Dialog.Message("IP Address", tLanInfo.IP);

hackstes
10-14-2004, 08:04 AM
Thank you. It works...