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
Contributors
User avatar
Bloodz_Ninja
Dedicated Member
Dedicated Member
Posts: 69
Joined: Sat Aug 25, 2012 3:20 am

Create downloader
Bloodz_Ninja
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
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.
User avatar
Shim
VIP - Donator
VIP - Donator
Posts: 882
Joined: Wed Dec 14, 2011 5:02 am

Re: Create downloader
Shim
anyway welcome to codenstuff :) your tutorial is good but it will be 2x good if you explain it more :)
Find my programs on Softpedia
User avatar
Bloodz_Ninja
Dedicated Member
Dedicated Member
Posts: 69
Joined: Sat Aug 25, 2012 3:20 am

Re: Create downloader
Bloodz_Ninja
mshimranpro wrote:
anyway welcome to codenstuff :) your tutorial is good but it will be 2x good if you explain it more :)
thanks for the welcome and the tip, i added a pictue to show, i hope that helps
User avatar
Shim
VIP - Donator
VIP - Donator
Posts: 882
Joined: Wed Dec 14, 2011 5:02 am

Re: Create downloader
Shim
now its good :) i love matrix :)
Find my programs on Softpedia
User avatar
AnoPem
VIP - Donator
VIP - Donator
Posts: 441
Joined: Sat Jul 24, 2010 10:55 pm

Re: Create downloader
AnoPem
If this is a tutorial you should put it in the tutorial sectiont, anyways it looks nice cooll;
https://t.me/pump_upp
User avatar
Bloodz_Ninja
Dedicated Member
Dedicated Member
Posts: 69
Joined: Sat Aug 25, 2012 3:20 am

Re: Create downloader
Bloodz_Ninja
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
User avatar
Jaime1993
New Member
New Member
Posts: 14
Joined: Wed Oct 03, 2012 7:40 pm

Re: Create downloader
Jaime1993
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 :D

NICE :) , snippet.
User avatar
Shim
VIP - Donator
VIP - Donator
Posts: 882
Joined: Wed Dec 14, 2011 5:02 am

Re: Create downloader
Shim
Jaime1993 wrote:
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 :D

NICE :) , snippet.
He is not snippet i know this guy
Find my programs on Softpedia
User avatar
Jaime1993
New Member
New Member
Posts: 14
Joined: Wed Oct 03, 2012 7:40 pm

Re: Create downloader
Jaime1993
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
User avatar
Shim
VIP - Donator
VIP - Donator
Posts: 882
Joined: Wed Dec 14, 2011 5:02 am

Re: Create downloader
Shim
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 ok
EDIT: and yeah check your Quotes blog
Hey 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
Find my programs on Softpedia
10 posts Page 1 of 1
Return to “Source-Code”