Exemplo n.º 1
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();
        }
Exemplo n.º 2
0
        private void outpatientToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Out_Patient p = new Out_Patient(0, "");

            p.ShowDialog();
        }
Exemplo n.º 3
0
 private void registrationToolStripMenuItem1_Click(object sender, EventArgs e)
 {
     outpatient = new Out_Patient(0, "");
     outpatient.button2.Hide();
     outpatient.ShowDialog();
 }