Indigo Rose Software

Professional Software Development Tools

 
Results 1 to 3 of 3

Thread: Help

  1. #1
    Join Date
    Dec 2003
    Location
    The Netherlands
    Posts
    475

    Help

    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

  2. #2
    Join Date
    Nov 2003
    Location
    Salzburg / Austria
    Posts
    312
    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

  3. #3
    Join Date
    Dec 2003
    Location
    The Netherlands
    Posts
    475

    Smile

    Thank you

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts