I have created a form which will run a .exe file say test.exe and take the input from a textbox. The code I have written
System.Diagnostics.Process.Start("E:\My_programme\test\test.exe", TextBox1.Text)
This works fine
Now I need another program to run which takes 2 inputs from 2 different textbox. The code I have written
System.Diagnostics.Process.Start("E:\My_programme\test\test.exe", TextBox1.Text, TextBox2.Text)
Its showing Error 1 Overload resolution failed because no accessible 'Start' accepts this number of arguments
The normal procedure to run the test.exe from command prompt is
E:\My_programme\test\test.exe", A, B
where A and B are two parameters to be given in the two textbox.
I am very new to Visual Basic, so anybody please help me to solve my problem.