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 › MultiPlayer Game Hacks & Cheats › Combat Arms Hacks & Cheats › Combat Arms Hack Coding / Programming / Source Code › Combat Arms Coding Help & Discussion › Visual Basic 2010 being stupid

Visual Basic 2010 being stupid

Posts 1–8 of 8 · Page 1 of 1
awsomeownage
awsomeownage
Visual Basic 2010 being stupid
alright so i put this code into microsoft vb and im not sure if this is a user error or microsoft being stupid:
#include <stdio.h>
#include <iostream>

using namespace std;

int main()
{
int i;
for (i=0, i<10; i+1;
{
cout << "Hello World!";
}
system ("pause");
}
when i run it it does nothing but sit there and blink when i run it. Help please?
#1 · 15y ago
WH
whit
You put C++ Code in the Wrong IDE...
#2 · 15y ago
_F
_Fk127_
download microsoft visual c++ and put this in there.
#3 · 15y ago
swatfx
swatfx
Even though the above 2 said it I'm going to say it a tad more clearly.

The code you are trying to compile isn't Visual Basic it is C++.
So you need to use a C++ compiler instead of a Visual Basic one.
I would recommend Microsoft Visual Studio, or CodeBlocks.
I personally use Visual Studio
#4 · 15y ago
NO
NOOB
Don't blame Visual Basic for your own stupidity.
#5 · 15y ago
WH
whit
Quote Originally Posted by ᴺᴼᴼᴮ View Post
Don't blame Visual Basic for your own stupidity.
Epic 5 day bump you dirty NOOB
#6 · 15y ago
SC
scimmyboy
let me fix your code a bit.

Code:
#include <iostream> 
using namespace std;

int main()
{
     for (int i = 0, i < 10, i++)
     {
           cout << "Hello World!";
     }
system ("pause");

return 0;
}
you can declare variables inside the argument of the for loop. you also need to include input output stream to be able to use cursor out.

and u have to return something in your function
#7 · 15y ago
topblast
topblast
Clearly some of you are asses...

The Visual Basic could be a misunderstanding.

"Don't blame Visual Basic for your own stupidity."
This is C++ not visual basic, and the IDE is called Visual Studio.

"You put C++ Code in the Wrong IDE"
Hmm I might be wrong here, But if he said it runs dont that mean that it is compiling?

"download microsoft visual c++ and put this in there."
He said he put it in VS 2010 already.
#8 · 15y ago
Posts 1–8 of 8 · Page 1 of 1

Post a Reply

Tags for this Thread

None