private void button1_Click_1(object sender, EventArgs e) { checkForm checkReservationForm = new checkForm(); checkReservationForm.client = client; checkReservationForm.ShowDialog(); }
private void onCallcheckForm(object sender, EventArgs e) { checkForm checkform = new checkForm(); checkform.StartPosition = FormStartPosition.Manual; checkform.Location = new Point(580, 350); checkform.Show(); }