Exemple #1
0
        //Opens up form to add new patient
        private void Add_Dropdown_1_Click(object sender, EventArgs e)
        {
            Global.addConsultationOpen = true;
            Add_Edit_Patient addPatient = new Add_Edit_Patient();

            addPatient.ShowDialog();
            addPatient.Focus();
        }
Exemple #2
0
        //Opens Add_Edit_Patient
        private void Add_Patients_Button_Click(object sender, EventArgs e)
        {
            this.Hide();
            Add_Edit_Patient addPatient = new Add_Edit_Patient();

            addPatient.ShowDialog();
            addPatient.Focus();
        }