i cant run program!!!!!!

closed account (LAfSLyTq)
visual c++ code
1
2
3
using namespace System::Diagnostics;

Process::Start("Run.bat")


the problem is that it cant find the file specified, please help
Two issues:

It's .NET

1. Is Process::Start() able to run a batch file? Because it's something done by the console. Try ShellExecute() instead.

2. Path. Can it be found by the function?
Topic archived. No new replies allowed.