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] Run Program With Another Program

[HELP] Run Program With Another Program

Posts 1–13 of 13 · Page 1 of 1
Highlander
Highlander
[HELP] Run Program With Another Program
Hello,
it's possible to run an program with another one.
but how?
And i whant the second program that has to be runned with that program else there will be an error like:
You can only run this with the loader.
If someone tells me how im happy/yea
#1 · 16y ago
Shark23
Shark23
You can start another process using shell.
Code:
Shell('process path here)
#2 · 16y ago
Blubb1337
Blubb1337
Why don't you just make a second form lol.

If it's an external program, the second thingy isn't possible.

Starting another program:

Vb.Net Processes
#3 · 16y ago
Shark23
Shark23
Well thats true.
#4 · 16y ago
AeroMan
AeroMan
yep, try Process.start(your program)
Goodluck
#5 · 16y ago
Sydney
Sydney
Lol you mean Like your Own Form with a Button and when you press the Button Like PerX is Starting ?

Method by Using Resources...Dont forget to add the exe to the resources...
Use this Code:


Code:
Imports System.IO
Public Class Form1

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim RPath As String = Application.StartupPath & "\File.exe"

        Using CreateFile As New FileStream(RPath, FileMode.Create)
            CreateFile.Write(My.Resources.NAMEOFTHEEXE, 0, My.Resources.NAMEOFTHEEXE.Length)
        End Using

        Process.Start(RPath)
    End Sub
End Class
#6 · edited 16y ago · 16y ago
Melodia
Melodia
Do not use Process::Start.

Use CreateProcess, Arguments are way Much Customizable for your Needs.

You-> Go Check MSDN
#7 · 16y ago
tempta43
tempta43
Process.Start(yourprogram.exe) or (C:/Program Filesrprogram.exe)
or
Create a new form.
Then
NewForm.show()
#8 · 16y ago
aLcohoL_95
aLcohoL_95
make a process
Code
[php]
Process.Start("Your:\Programs\Path")
[/php]
#9 · 16y ago
Melodia
Melodia
Quote Originally Posted by tempta43 View Post
Process.Start(yourprogram.exe) or (C:/Program Filesrprogram.exe)
or
Create a new form.
Then
NewForm.show()
Quote Originally Posted by aLcohoL_95 View Post
make a process
Code
[php]
Process.Start("Your:\Programs\Path")
[/php]

You two really can't read do you ?

Process::Start isn't as much customizable that CreateProcess.
And He needs to specify unlisted args, So he needs to use CreateProcess() ( Dunno What's CreateProcess in VB, But certainly the same function, Just go check MSDN. ).
#10 · 16y ago
inmate
inmate
~Link Removed, solely because it is a outside link, you need to get those approved.


There is a good example for CreateProcess().

Regards[/SIZE][/COLOR][/FONT]
#11 · edited 16y ago · 16y ago
aLcohoL_95
aLcohoL_95
if others Didnt Work Try it
[php]Dim Prcs As New Process
Prcs.Start("Your:\Programs:\Path")[/php]
#12 · 16y ago
NextGen1
NextGen1
Essentially the question is "How do you want this application to start"

As a Process, Internally as part of the application, as a service?


Once that is determined, it should help you determine what method to use as each has it's own benefits.
#13 · 16y ago
Posts 1–13 of 13 · Page 1 of 1

Post a Reply

Similar Threads

  • NEED HELP running programBy Orteez in Homework & Learning Section
    2Last post 15y ago
  • [Help] Run program on startupBy alvaritos in Visual Basic Programming
    3Last post 15y ago
  • [Help]How to start another program?[Solved]By Web-Designer in Visual Basic Programming
    11Last post 16y ago
  • [Help]Create program files folder when run[Solved]By Physcadelic in Visual Basic Programming
    16Last post 15y ago
  • [HELP] vb programs invisibleBy 2vivi in Visual Basic Programming
    17Last post 16y ago

Tags for this Thread

None