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]How to start another program?[Solved]

[Help]How to start another program?[Solved]

Posts 1–12 of 12 · Page 1 of 1
Web-Designer
Web-Designer
[Help]How to start another program?[Solved]
I know how to have it open a web page but I wanna make a button start a program, and if the program isn't found or on the computer have it have a pop-up window say so.

I was told
Code:
Process.Start(program file path)
would work, well it doesn't I then added the " things still didnt work.


What would do that? +1 thanks and +rep and credit (If you want)

(btw I did search for another post about it before I posted this, so yeah.)
#1 · 16y ago
.C
.Celtics
Process.start("notepad")
#2 · 16y ago
Web-Designer
Web-Designer
Quote Originally Posted by .Celtics View Post
Process.start("notepad")
Okay it opens notepad, but I'm trying to make myself a game starter to start my games, well the first one is Crossfire and its not working I tried

Process.Start("crossfire")
Process.Start("crossfire.exe")
Process.Start("Crossfire.exe")
Process.Start("Crossfire")

NONE WORK. . .any ideas? I found a youtube video:




That would take forever and would be a huge code source. . .is that the only way?
#3 · edited 16y ago · 16y ago
Lolland
Lolland
Code:
Process.Start("C:\Program Files\test.exe")
Should work like that I think.
#4 · 16y ago
.C
.Celtics
I have made a program that open the .exe of the game, but it I needs to be in the folder.

Same code
Process.Start("name of game.exe")
#5 · 16y ago
NextGen1
NextGen1
Notpad works because windows has it "preset" Notepad, Wordpad . etc etc.

You need the full file path plus extension otherwise
#6 · 16y ago
Web-Designer
Web-Designer
Okay I got it! Thanks, I got it f*cked up some how. . .but its working now
#7 · 16y ago
mizzer3
mizzer3
for example:
Code:
Process.Start ("iexplore.exe")
work ?
#8 · 16y ago
Jason
Jason
Quote Originally Posted by mizzer3 View Post
for example:
Code:
Process.Start ("iexplore.exe")
work ?
It works for selected cases, as NextGen explained earlier some programs are preset in windows and so can be directly called with their executable name. The majority of programs, however, require the full path and extension to run.

i.e

[php]
Process.Start("TheGame.exe") 'this will not work, as "TheGame" is not preset in windows and it doesnt know how to activate it.'

Process.Start("C:\NewFolder\MyFiles\TheGame.exe") ' by defining the full path and extension, windows knows exactly what it should be executing and will work.
[/php]
#9 · 16y ago
mizzer3
mizzer3
Quote Originally Posted by J-Deezy View Post


It works for selected cases, as NextGen explained earlier some programs are preset in windows and so can be directly called with their executable name. The majority of programs, however, require the full path and extension to run.

i.e

[php]
Process.Start("TheGame.exe") 'this will not work, as "TheGame" is not preset in windows and it doesnt know how to activate it.'

Process.Start("C:\NewFolder\MyFiles\TheGame.exe") ' by defining the full path and extension, windows knows exactly what it should be executing and will work.
[/php]
yeah , i know. but for some simply progs, like a webbrowser , this will work fine
#10 · 16y ago
IZ
iZ3RO
Code:
Process.Start("C:\FileLocation\New Folder\GameName.exe")
You need to tell it exactly where the game is located.
#11 · 16y ago
Jason
Jason
Quote Originally Posted by iZ3RO View Post
Code:
Process.Start("C:\FileLocation\New Folder\GameName.exe")
You need to tell it exactly where the game is located.
That's pretty much exactly what I posted a few hours ago
#12 · 16y ago
Posts 1–12 of 12 · Page 1 of 1

Post a Reply

Similar Threads

  • [Help] How to close a program with a hotkey (VB6).By wr194t in Visual Basic Programming
    7Last post 18y ago
  • [Help]How to make scrolling text?[solved]By Bombsaway707 in Visual Basic Programming
    18Last post 15y ago
  • [Help] Associating file extension with program? [solved]By Bombsaway707 in Visual Basic Programming
    7Last post 15y ago
  • [SOLVED]help! how can I start a server in alterIwnet?By 4ever2u in Call of Duty Modern Warfare 2 Help
    5Last post 16y ago
  • [Help]How to make Program overlay Combat Arms[solved]By Boomdocks in Visual Basic Programming
    6Last post 15y ago

Tags for this Thread

None