I created a program with twoo projets like Client and Server.
To open a form in a button click with one prject goes like following:
private void buttonOpenForm_Click(object sender, EventArgs e)
{
Form2 frmForm2 = new Form2();
frmForm2.Show();
}
If I'm calling the Form2 from Server project, I don't know how to open this Form2 if exists in Client project.