[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
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
Do not use Process::Start.
Use CreateProcess, Arguments are way Much Customizable for your Needs.
You-> Go Check MSDN
make a process
Code
[php]
Process.Start("Your:\Programs\Path")
[/php]
~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]
if others Didnt Work Try it
[php]Dim Prcs As New Process
Prcs.Start("Your:\Programs:\Path")[/php]
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.