Create downloader
If you have completed an application and wish to share the complete source/project files with everyone then please post it in here. Source-code files only, no tutorials.
10 posts
Page 1 of 1
Hey guys, i am not so new to the forum, but here is my first post on how to make a downloader.
Add 2 Textboxs
2 Buttons
Savefiledialog
progress bar
Name button 1 ...
name button 2 download
image:![Image]()
now enter the following codes
Add 2 Textboxs
2 Buttons
Savefiledialog
progress bar
Name button 1 ...
name button 2 download
image:

now enter the following codes
Code: Select all
Imports System.Net
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
SaveFileDialog1.Filter = "All|*.|ANSI|*.ans|Jpg|*.jpg|Exe|*.exe|Rar|*.rar|Zip|*.zip|Mp3|*.mp3|Avi|*.avi"
SaveFileDialog1.ShowDialog()
TextBox2.Text = SaveFileDialog1.FileName
End Sub
Public WithEvents download As WebClient
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
download = New WebClient
download.DownloadFileAsync(New Uri(TextBox1.Text), TextBox2.Text)
End Sub
Private Sub download_DownloadProgressChanged(ByVal sender As Object, ByVal e As System.Net.DownloadProgressChangedEventArgs) Handles download.DownloadProgressChanged
ProgressBar1.Value = e.ProgressPercentage
End Sub
End Class
You do not have the required permissions to view the files attached to this post.
Last edited by Bloodz_Ninja on Sat Oct 13, 2012 4:15 pm, edited 1 time in total.
anyway welcome to codenstuff
your tutorial is good but it will be 2x good if you explain it more 


Find my programs on Softpedia
mshimranpro wrote:anyway welcome to codenstuffthanks for the welcome and the tip, i added a pictue to show, i hope that helpsyour tutorial is good but it will be 2x good if you explain it more
If this is a tutorial you should put it in the tutorial sectiont, anyways it looks nice cooll;
AnoPem wrote:If this is a tutorial you should put it in the tutorial sectiont, anyways it looks nice cooll;it was in tutorial section but someone moved it. thanks by the way
Welcome back, snippet ,
nice acc, LOL
good thing that u didnt make a post on introduce ur self so u people dont know that u r snippet, but 
NICE
, snippet.
nice acc, LOL


NICE

Jaime1993 wrote:Welcome back, snippet ,He is not snippet i know this guy
nice acc, LOLgood thing that u didnt make a post on introduce ur self so u people dont know that u r snippet, but
NICE, snippet.
Find my programs on Softpedia
Ok, but as i raed, you and snippet are semi-friends, so i can be sure that you are not helping him, but yeah ok
EDIT: and yeah check your Quotes blog
EDIT: and yeah check your Quotes blog
Jaime1993 wrote:Ok, but as i raed, you and snippet are semi-friends, so i can be sure that you are not helping him, but yeah okHey you just registered on 2nd of this month and you dont know what happened so just be quiet i can say snippet is not in touch with me after he leaved codenstuff but i got a email from him before 1 - 1/2 month so i am not helping him i just wonna say that
EDIT: and yeah check your Quotes blog
Find my programs on Softpedia
10 posts
Page 1 of 1
Copyright Information
Copyright © Codenstuff.com 2020 - 2023