Hey folks
With this code you can download a file from the internet to your computer by a link. I use this on rapidshare sometimes to bypass the wait time.
Layout:
Create 3 Textboxes and 2 buttons
Code:
First do at top do:
Double click button 1 and write the code:
Code:
Dim client As New WebClient
client.DownloadFile(TextBox1.Text, "C:\" & TextBox2.Text & TextBox3.Text)
What the code does: Textbox1.Text contains the URL to the file, for example
Code:
http://www.dvdbeaver.com/film2/DVDReviews32/a%20lol/ttile%20lol.jpg
see the .jpg at the end.. it means the file is JPEG format. Textbox2.Text is the filename. And Textbox3.Text is the extension like
Code:
.rar, .zip, .jpg, .exe
So if your downloading a JPEG file then write "jpg" in the Textbox3 or "exe" for an executeable and so on
Double click button 2 and write the code:Summary: input your link, the desired filename, and at last the extension. Then click on your button and file will be downloaded to C:\
How mine looks:

Happy Coding