Results 1 to 9 of 9

Thread: Listbox Items And Images

Threaded View

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Mar 2010
    Posts
    64

    Listbox Items And Images

    I've decided to edit this thread as its pretty complicated to understand my problem in the way i've worded it.

    I want to make an application that's pretty much all server side.
    I have everything sorted, apart from downloading images from my server.

    I have a listbox containing all the game names, in this format.

    Code:
    pacman
    rallyx
    mspacman
    asteroids
    There are many more, thats just an example.

    Each game name is stored as a folder on my server. Inside those folders is the games boxart, called boxart.png

    What i want to do is make an application that makes those folders and downloads the images.

    I have made the "create a folder for each game name" code already, now i just need to add another line or two to download the image inside those created folders.

    Code:
       
            For x As Integer = 0 To ListBox1.Items.Count - 1
                My.Computer.FileSystem.CreateDirectory("C:\Users\Joel\Desktop\ids\" + ListBox1.Items(x).ToString)
    next
    Could anyone help me with this ??

    I would greatly appreciate the help as it seems a simple task but i'm having trouble with it.
    Last edited by JJMPSP; May 9th, 2010 at 06:51 AM. Reason: reworded problem

Posting Permissions

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



Click Here to Expand Forum to Full Width