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 › Unknown error after compiling [solved]

Unknown error after compiling [solved]

Posts 1–4 of 4 · Page 1 of 1
pyton789
pyton789
Unknown error after compiling [solved]
Hey I really hope some of you know something about this, because I can't find the problem.
Earlier today I added a checkbox and a timer to a fully working project(Black Ops trainer). And I gave them this code:
[highlight=VB.net]Private Sub CheckBox19_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs)
'esc fix
If CheckBox19.Checked = True Then
Timer6.Enabled = 1
Else
Timer6.Enabled = 0
End If
End Sub

Private Sub Timer6_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs)
'esc fix
Dim Esc As Boolean
Esc = GetAsyncKeyState(Keys.Escape)
If Esc = True Then
If CheckBox16.Checked = True Then
ButtonNew14.PerformClick() ' fast trigger
End If
If CheckBox15.Checked = True Then
ButtonNew15.PerformClick() ' 1 shot
End If
End If
End Sub[/highlight]
The code doesn't matter, but the point is that there was no errors.

I clicked build and went into the release folder. I started the program and there was no problem, but when I copied it to the desktop it wouldn't start. It just gave an error.


So it will launch in the bin\release folder but when I move it I get that error.
I tried to find something on google about clr20r3, but I found nothing.

I also tried removing the checkbox and the timer + code, but I still get the error when I build it.
#1 · 15y ago
Jason
Jason
Sounds like a missing dependency if it works in the release folder. Be sure to copy any .dlls to wherever you're putting the .exe, or merge the .dlls into the exe.
#2 · 15y ago
pyton789
pyton789
@Jason there is a dll for a button, but it is on the desktop. I even tried to take everything from the release folder and copy it to the desktop, but I still got the same error.

BTW could you tell me how to merge a dll into a exe for future programming use.

EDIT: I got it working.
I thought about how to merge the dll into the exe and then I took "Dotfusticator" and obfusticated the exe and the dll at the same time while hoping that they would get merged. And I think it worked because the program suddenly works perfect like it used to.
Well thanks for the help Jason
#3 · edited 15y ago · 15y ago
Jason
Jason
I use ILMerge for assembly merging. It comes with Windows and runs on the command line. I'll release something later on to merge assemblies.
#4 · 15y ago
Posts 1–4 of 4 · Page 1 of 1

Post a Reply

Similar Threads

  • Error after loggingBy H3nriquee in Call of Duty Black Ops Help
    4Last post 14y ago
  • Error After Halloween PatchBy Janitor in CrossFire Help
    5Last post 14y ago
  • Error After Using Harold's BypassBy kelvinho6666 in Combat Arms Hacks & Cheats
    16Last post 18y ago
  • File not found error after patchBy jihyun5427 in CrossFire Hacks & Cheats
    5Last post 17y ago
  • Still have an error? after everything?By kj52 in Combat Arms Hacks & Cheats
    9Last post 17y ago

Tags for this Thread

None