Indigo Rose Software

Professional Software Development Tools

 
+ Reply to Thread
Results 1 to 3 of 3
  1. #1
    Join Date
    Feb 2006
    Posts
    346

    Two Part Question

    Part one:

    Is it possible to download from HTTP multiple files at once? So let say I have a folder with 10 ZIP files. Can I just download all files with out calling out each file name?

    Part Two:

    I have a application that runs in three different locations and one central database. Each location has a seperate LAN IP such as 192.1.xx.xx, 192.2.xx.xx and 192.3.xx.xx. Is it possible to do if IP Address is 192.1 then set combobox1 visible and set combobox2 not visible - If 192.2 set combobox3 visible and combobox1 not visible etc..?

    Thanks

  2. #2
    Join Date
    May 2006
    Posts
    5,380
    Part 1, useing http functions you can set a for loop to download all the files, although you might be better off using the ftp functions, there is more than one way to achive your goal

    Part 2, you can get the local IP on a system by useing "IPADDY=System.GetLANInfo().IP" and from there you can filter the IP's

    eg:
    Code:
    IPADDY=System.GetLANInfo().IP
    if IPADDY == "192.168.0.1" then
        ComboBox.SetVisible("Object1", true);
    elseif IPADDY == "192.168.0.2" then
        ComboBox.SetVisible("Object2", true);
    elseif IPADDY == "192.168.0.3" then
        ComboBox.SetVisible("Object3", true);
    elseif IPADDY == "192.168.0.4" then
        ComboBox.SetVisible("Object4", true);
    end
    Open your eyes to Narcissism, Don't let her destroy your life!!

  3. #3
    Join Date
    Feb 2006
    Posts
    346
    Just what I was looking for!

    Thanks for your help!

Similar Threads

  1. Qick Action Question
    By haythamg in forum AutoPlay Media Studio 7.5
    Replies: 2
    Last Post: 12-29-2007, 07:08 AM
  2. I need to divide MD5-variable to 8 part that any part have 4 letter.
    By Esfahan in forum AutoPlay Media Studio 6.0
    Replies: 3
    Last Post: 11-16-2007, 04:14 PM
  3. Test Drive Question
    By jrthom1 in forum Setup Factory 7.0
    Replies: 3
    Last Post: 05-17-2007, 01:45 PM
  4. Math.RandomSeed() question
    By stickck in forum AutoPlay Media Studio 6.0
    Replies: 8
    Last Post: 06-09-2006, 09:42 AM

Posting Permissions

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