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 › Visual Basic Programming › Source Code Dump + Explanations on what they do!

Source Code Dump + Explanations on what they do!

Posts 1–4 of 4 · Page 1 of 1
Pixie
Pixie
Source Code Dump + Explanations on what they do!
I have decided to release some of my source codes that may be helpful to some people.
This isn't the BIG source codes that the pros at visual basics have to use, but it's basic codes, with some tutorials on using them:

Key:
Source Name
Explanation
Other
Conclusion


Hotkeys:

Put this under form1:
Code:
Public Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer
And put this in the Timer1:
Code:
If getasynckeystate(Keys.F11) Then
Command here
End If
Change the Keys.F11 to any other hotkey, example:
Code:
Keys.F5

Deleting Files:
Put this under Button1:
Code:
Dim Targetfile As String
That is what makes Targetfile (The file location) an available code, that wont give an error when used, but this will give it's self an error, so you will need this:
Code:
Targetfile = "C:\Documents and Settings\All Users"
Notice, it says "Targetfile = " , This means that the code we used above the code above the code that's above us has a meaning now, and wont give any errors. Now if you want to make it so people can edit what to delete, then change the part where it says: "C:\Documents and Settings\All Users", to this:
Code:
Targetfile = "C:\" + TextBox1.Text)
So now we have shortened it to the user's choice, as long as it is in the C drive.
Now, to kill the file, we want to use this:

Code:
Kill(Targetfile)
That now gives Targetfile a job, which is to delete what it is replacing.

I will edit this list as I find more of my source codes that I forgot the location to.


And here just a simple source code that has nothing to do with what I previously said, as this is only something that people may want to use:
It is a video converter source code, that may not work on .mp3, or turning it into music.:

Code:
Button 1 (The open file button)

Selectvid.showdialog()

Button2 (The convert button)

 Dim type As String = ComboBox1.Text
        If ComboBox1.Text = "" Then
            MsgBox("No file type selected")
        Else
        End If
        MsgBox(TextBox1.Text + " shall be converted into a " + type + " file.")
        Dim oldFile As String = Mid(TextBox1.Text, 1, Len(TextBox1.Text) - 4)
        FileCopy(TextBox1.Text, oldFile + type)
    


SelectVid(The openfiledialog)

Dim file As String = SelectVid.FileName
        TextBox1.Text = file
If you need any help, like with error codes (That aren't related to this), just PM me.
But if you need help with error codes that come from the codes I just gave you, then please post here telling me what the error is (Like what is underlined red/blue/green, or what is highlighted yellow when debugging, etc), and What your error log says (Usually located on the bottom of Visual Basics)
#1 · 16y ago
stevethehacker
stevethehacker
well most people can do this but this should be helpful to beginners
#2 · 16y ago
Pixie
Pixie
Quote Originally Posted by stevethehacker View Post
well most people can do this but this should be helpful to beginners
I will be adding a lot more, because my internet problems are over, and as soon as I find my lost source codes
#3 · 16y ago
Dark_Goliath
Dark_Goliath
Prety nice source code
#4 · 16y ago
Posts 1–4 of 4 · Page 1 of 1

Post a Reply

Similar Threads

  • Source code dumps:By scriptkiddy in Visual Basic Programming
    9Last post 16y ago
  • what are source codes used forBy lagathon121 in CrossFire Help
    0Last post 16y ago
  • Were do i put the source codes, What file do i use?By Masonozone in Combat Arms Coding Help & Discussion
    10Last post 15y ago
  • HALO 2 (XBOX) Source CodeBy mirelesmichael in General Game Hacking
    12Last post 20y ago

Tags for this Thread

#code#dump#explanations#source