Example #1
0
        private void button1_Click_1(object sender, EventArgs e)
        {
            checkForm checkReservationForm = new checkForm();

            checkReservationForm.client = client;
            checkReservationForm.ShowDialog();
        }
Example #2
0
        private void onCallcheckForm(object sender, EventArgs e)
        {
            checkForm checkform = new checkForm();

            checkform.StartPosition = FormStartPosition.Manual;
            checkform.Location      = new Point(580, 350);
            checkform.Show();
        }