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 › Programming Tutorial Requests › Create a keygen in VB6

Create a keygen in VB6

Posts 1–9 of 9 · Page 1 of 1
steven_italy
steven_italy
Create a keygen in VB6
someone can help to create a keygen (with randrom numbers) in VB6?
#1 · 18y ago
JJ
jjalle
I dont kno you could make things like that in vb6 :O , or you ccan ? xD
#2 · 18y ago
yup
yup
It would probably be easier with a different program.
#3 · 18y ago
apezwijn
apezwijn
LoL if your just starting like you have some serials make each click a diff serial appear pm me so next time i recieve a pm from you i can give you a good site to learn cracking and making keygens in ollydbg.
#4 · 18y ago
HeXel
HeXel
Quote Originally Posted by steven_italy View Post
someone can help to create a keygen (with randrom numbers) in VB6?
damm google it

you will find a lot of info
#5 · 18y ago
Toymaker
Toymaker
u can use any language lol. but ya ull have to be able to program and the programming part will be easy google all the way
#6 · 18y ago
vignesh1230
vignesh1230
Random Password Generator
Create a text box and command button.
Add this code to your form:

Code:
Private Sub Command1_Click()
 Text1 = GenerateCode() 'make sure ur textbox is called Text1
 End Sub 
Public Function GenerateCode() strInputString ="1234567890abcdefghijklmnopq rstuvwxyzABCDEFGHIJKLMNOPQRSTUVXYS" 'these are the characters which will be in the password 
intLength = Len(strInputString)
 intNameLength = 7 'edit this according to how long u want ur password to be Randomize ' jus to make it random :D
 strName = "" For intStep = 1 To intNameLength      intRnd = Int((intLength * Rnd) + 1) 
strName = strName & Mid$(strInputString, intRnd, 1) 
Next 

GenerateCode = strName 
End Function


debug it and it works.
#7 · edited 18y ago · 18y ago
Oneirish
Oneirish
vignesh does that generate how many number? like x or xxxxxxxxxxxxx because that would help out alot?
#8 · 18y ago
adamleslie0
adamleslie0
It is very hard to make these and I think the only person on MPGH to succeed is Dave... A lot of people have tried but I will help you collect old codes if that is a help (y)
#9 · 18y ago
Posts 1–9 of 9 · Page 1 of 1

Post a Reply

Similar Threads

  • Good Cracks/Serials/Keygens websiteBy Elmo in Spammers Corner
    11Last post 9y ago
  • [Tutorial] How to create a keygenBy maxkranen1 in Visual Basic Programming
    12Last post 16y ago
  • How to create a DLL Injector in VB6 ?By SteeL in Visual Basic Programming
    1Last post 17y ago
  • password creating vb6By boyd45 in Programming Tutorial Requests
    15Last post 18y ago
  • Creating A GunzRunnableBy CrazyDeath in Game Hacking Tutorials
    7Last post 20y ago

Tags for this Thread

#create#keygen#vb6