private void outpaientToolStripMenuItem_Click(object sender, EventArgs e)
 {
     Outpatient = new Out_Patient(0, "");
     Outpatient.Show();
 }
Example #2
0
        private void outpatientToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Out_Patient p = new Out_Patient(0, "");

            p.ShowDialog();
        }
Example #3
0
 private void registrationToolStripMenuItem1_Click(object sender, EventArgs e)
 {
     outpatient = new Out_Patient(0, "");
     outpatient.button2.Hide();
     outpatient.ShowDialog();
 }
Example #4
0
        private void checkInformationToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Out_Patient op = new Out_Patient(1, dataGridView1.SelectedRows[0].Cells[1].Value.ToString());

            op.ShowDialog();
        }
Example #5
0
 private void button2_Click_1(object sender, EventArgs e)
 {
     outpatient = new Out_Patient(0, "");
     this.Close();
     outpatient.Show();
 }