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 › Injector error when trying to build.

Injector error when trying to build.

Posts 1–2 of 2 · Page 1 of 1
Crank'D
Crank'D
Injector error when trying to build.
Please place Help Request as the prefix, I forgot.

Currently I have been working on a personal injector and bumped into what I have brought down to 2 errors that I can't seem to fix. Help would be appreciated .
The first error says Declaration expected and it has this line InjectButton.Enabled = false and radiobutton1.checked = true with InjectButon highlighted.
The second error says Error 2 Value of type 'String' cannot be converted to 'System.Windows.Forms.TextBox'. C:\Users\Owner\Desktop\Furry Inject\Furry Inject\Form1.Designer.vb 312 16 (my injectors name here)
and has the line Path = OpenFileDialog.FileName with OpenFileDialog.FileName highlighted.
I am building this in Visual Studio 2012.
#1 · 13y ago
Pingo
Pingo
First error..
You'l need to put InjectButton.Enabled = false and radiobutton1.checked = true inside a function or a method.
Not like this
Code:
Public Class Form1
    InjectButton.Enabled = False
End Class
Maybe more like
Code:
    Private Sub Form1_Load(ByVal sender As Object, ByVal e As EventArgs) Handles MyBase.Load
        InjectButton.Enabled = False
    End Sub
Of just enable/disable it from the properties.

The other error..
My guess is you called your textbox *Path*
Code:
Path.Text = OpenFileDialog.FileName
See if any of this helps.
#2 · 13y ago
Posts 1–2 of 2 · Page 1 of 1

Post a Reply

Similar Threads

  • Application error when trying hacksBy lilchumbe in Combat Arms Hacks & Cheats
    1Last post 17y ago
  • [Solved] why do i have this error when try to login?By altrastreem in CrossFire Help
    16Last post 15y ago
  • I get this error when trying to launch MCBy hiiii in Minecraft Help
    3Last post 13y ago
  • I get an error when trying to run CFBy jroyxfire in CrossFire PH Help
    2Last post 15y ago

Tags for this Thread

None