PDA

View Full Version : Help


sside
12-13-2003, 04:05 PM
Hello
Hello everybody. I got some troubles with this;
laninfo = System.GetLANInfo();
Input.SetText("Input1", laninfo);
I can not put the info in whatever (input box, paragraph box). In the way i wrote it here works ok with the ams4.
Some help would be apreciated
Thank you

Stefan_M
12-14-2003, 01:52 AM
Hello,

laninfo = System.GetLANInfo();
Input.SetText("Input1", laninfo);

The action System.GetLANInfo() returns a table.
you have to use

Input.SetText("Input1", laninfo.Host);
Input.SetText("Input1", laninfo.Domain);




Stefan

sside
12-14-2003, 03:25 PM
;) Thank you