Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › Programming › Programming Tutorials › [VB.NET]Downloader Tutorial Hardness: Easy

Lightbulb[VB.NET]Downloader Tutorial Hardness: Easy

Posts 1–3 of 3 · Page 1 of 1
TH
TheGRimPunisher12
[VB.NET]Downloader Tutorial Hardness: Easy
Visual Basic Downloader Tutorial
So In This Tutorial We Are Going To Make A Downloader Cuse Aparently I Need 25 or 20 Posts To Add Links And I Want To Share My Knowladge With You

So Let's Get Started

1. Creating The Forum

Ok So We Need To Make A Forum We We Are Using Visual Studio/Basic To Make The Program So Create A Forum And Add 2 Labels, 2 TextBoxes, 1 Save File Dialog, 1 Progress Bar And 3 Buttons

And Put Them Like This:


Next Double Press On The Exit Button And Type: End
Next All The Way On Top Put Above Public Class Form1 This: Imports System.Net
Next Double Click On The Browse Button And Type This In:
 
Code
SaveFileDialog1.ShowDialog()
TextBox2.Text = SaveFileDialog1.FileName

Next Double Click On The Download Button And Put This Above Button Sub Of Downloader Button:
 
Code
Public WithEvents download As WebClient

Next In The Button Sub Of Download Button Write This In:
 
Code
download = New WebClient
download.DownloadFileAsync(New Uri(TextBox1.Text), TextBox2.Text)

Next Under The Tabs Press And Select download And Next To It There Is Another Combo Box There Find And Press On Download Progress Changed
The Write In This Code:
 
Code
ProgressBar1.Value = e.ProgressPercentage

And There You Go Full Code Here:
 
Full Code
Imports System.Net
Public Class Form1

Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
End
End Sub

Private Sub Button3_Click(sender As Object, e As EventArgs) Handles Button3.Click
SaveFileDialog1.ShowDialog()
TextBox2.Text = SaveFileDialog1.FileName
End Sub

Public WithEvents download As WebClient
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
download = New WebClient
download.DownloadFileAsync(New Uri(TextBox1.Text), TextBox2.Text)
End Sub

Private Sub download_DownloadProgressChanged(sender As Object, e As DownloadProgressChangedEventArgs) Handles download.DownloadProgressChanged
ProgressBar1.Value = e.ProgressPercentage
End Sub
End Class
1.png
#1 · 13y ago
~S
~Syphox
Quote Originally Posted by TheGRimPunisher12 View Post
1. Creating The Forum

Ok So We Need To Make A Forum We We Are Using Visual Studio/Basic To Make The Program So Create A Forum And Add 2 Labels, 2 TextBoxes, 1 Save File Dialog, 1 Progress Bar And 3 Buttons
What the hell are you talking about?!

A forum is something like MPGH you dumbass
#2 · 12y ago
abuckau907
abuckau907
 
Spoiler

"Next Under The Tabs Press And Select download And Next To It There Is Another Combo Box There Find And Press On Download Progress Changed"

ie. here


The magic that makes it all happen:
WebClient.DownloadFileAsync(New Uri(TextBox1.Text), TextBox2.Text)
#3 · edited 12y ago · 12y ago
Posts 1–3 of 3 · Page 1 of 1

Post a Reply

Similar Threads

  • [VB.NET] Downloader - Hardness Level: EasyBy TheGRimPunisher12 in Visual Basic Programming
    0Last post 13y ago
  • [Tutorial]Automatic Facebook Spreader / Downloader │ Drive By Download │ DetailedBy House in Exploits
    13Last post 12y ago
  • [Tutorial]Advanced File DownloaderBy Bombsaway707 in Visual Basic Programming
    13Last post 16y ago
  • [Tutorial]How to make a Youtube Video DownloaderBy o0OpurezO0o in Programming Tutorials
    9Last post 15y ago

Tags for this Thread

#code#create program#downloader#program#vb.net#visual basic