How to move from one form in C# to another form in VB.net?
I tried this code:
Process b = new Process();
this.Hide();
System.Diagnostics.Process.Start(@"D:\Fingerprint System\Fingerprint System\bin\Debug\Fingerprint System.exe");
Thread.Sleep(1000);
SendKeys.SendWait("{Enter}");
But it opens the main form in VB.net which is form1
, and I want to open another form in VB.net which is form4
.