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
Professional Software Development Tools
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
Try this:
tLanInfo = System.GetLANInfo();
Dialog.Message("IP Address", tLanInfo.IP);
Thank you. It works...