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.
There are many more, thats just an example.Code:pacman rallyx mspacman asteroids
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.
Could anyone help me with this ??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
I would greatly appreciate the help as it seems a simple task but i'm having trouble with it.




Reply With Quote