private void _btnAccept_Click(object sender, EventArgs e)
{
//UserOntrip _pnl = new UserOntrip();
//_pnl.Show();
//System.Diagnostics.Process.Start(Application.StartupPath.ToString() + @"\_pnlUserOnTrip.exe");
Process.Start(@"C:\Users\Gina\Desktop\FINAL PROJECT\LogInForm\LogInForm\UserOntrip.cs");
LoadingScreen _load = new LoadingScreen();
_load.Show();
}
//static void formopen
//{
// ProcessStartInfo _startinfo = new ProcessStartInfo();
// _startInfo.FileName = "UserOntrip.cs";
// _startInfo.Arguments = file;
// Process.Start(startInfo);
//}
If you know how the driver side and user side of uber works. I want it to apply on my system. Where whenever i click the accept button from driver side project it will open a form from the userside project. What code should I add, in order to achieve such connection from project to project I hope you can help me this is the last piece for my system to work and be needing this to pass my re-defence tomorrow Thank you