Can anyone help me? O(∩_∩)O
Today I meet a question that I want to use a program maybe a player and I need log the data(BCI EEG) from the user.So I try to use the Process Class to Start a ConsoleApplication in an WindowsApplication.
I create a Simple WindowsApplication to have a try my idea. But it not works,I also try to use the Process Class to Start other Application It' Ok.When I Start my own program that is a ConsoleApplication it not works.
 public partial class Form1 : Form
 {
    Process myProcess = new Process();
    public Form1()
    {
        InitializeComponent();
    }
    private void button1_Click(object sender, EventArgs e)
    {
        myProcess.StartInfo.UseShellExecute = false;
        // You can start any process, HelloWorld is a do-nothing example.
        myProcess.StartInfo.FileName = "D:\\EEG\\Emotiv Xavier TestBench v3.0.0.41\\EmotivXavierTestBench.exe";
        myProcess.StartInfo.CreateNoWindow = true;
        myProcess.Start();
        //System.Console.WriteLine("Hello World!");
        //MessageBox.Show("button1.Click was raised.");
    }
This TestBench program can open .But why the program I create doesn't work? D:\temp\EmotivConnection\Debug\EmotivConnection.exe
 
     
     
    