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 › [Help] Binding button to textbox

[Help] Binding button to textbox

Posts 1–3 of 3 · Page 1 of 1
AR
Archangel
[Help] Binding button to textbox
Hi guys, im building a trainer in vb.
I have everything working, except for my stats editor.

i have a textbox and a button.
textbox is to enter the stats you want to change, and the button to apply them.
I feel like such a dumbass asking this xD

here's a piece of code:
Code:
Private Sub Button2_Click() Handles Button2.Click
        string1 = readdll("cshell.dll")
        string2 = "&H" + Hex(string1 + &HCC19920)
        Call YGLTYADCXJ(string2, ??, 4)
        TextBox1.Text = ??
    End Sub
the ?? stands for the value you want it changed to in the textbox..
Anyways, i hope i made clear what my problem is..
if not, please let me know xD
#1 · 16y ago
Blubb1337
Blubb1337
Code:
Private Sub Button2_Click() Handles Button2.Click
        string1 = readdll("cshell.dll")
        string2 = "&H" + Hex(string1 + &HCC19920)
        Call YGLTYADCXJ(string2, Textbox1.Text, 4)       
    End Sub
You better use Val(Textbox1.Text) or a NumericUpDown.

Code:
        Call YGLTYADCXJ(string2, Val(Textbox1.Text), 4)
Code:
        Call YGLTYADCXJ(string2, NumericUpDown1.Value, 4)
#2 · 16y ago
AR
Archangel
ok thanks man, ill report back if it worked

EDIT: worked, thanks allot
here is a link to where i released the trainer, check out if you want
http://www.mpgh.net/forum/142-call-d...r3zdude9*****ml
#3 · edited 16y ago · 16y ago
Posts 1–3 of 3 · Page 1 of 1

Post a Reply

Similar Threads

  • Help binding attacksBy tenkan in Vindictus Help
    7Last post 15y ago
  • [Help] searching with a textbox.By trevor206 in Visual Basic Programming
    8Last post 16y ago
  • [Help]Record Button Down LengthBy ppl2pass in Visual Basic Programming
    10Last post 16y ago
  • [Help]Change Button Text[Solved]By [PA]nts in Visual Basic Programming
    7Last post 16y ago
  • [Help]Save Contents of TextBox[Solved][Closed]By bayley60 in Visual Basic Programming
    2Last post 16y ago

Tags for this Thread

None