Example #1
0
        private void btMedicSelect_Click(object sender, EventArgs e)
        {
            var medicListForm = new MedicListForm(true);

            medicListForm.MedicInsertionEvent += new MedicListForm.MedicInsertionHandler(medicListForm_MedicInsertionEvent);
            medicListForm.ShowDialog();
        }
Example #2
0
        private void btMedicList_Click(object sender, EventArgs e)
        {
            var medicListForm = new MedicListForm();

            medicListForm.ShowDialog();
        }
Example #3
0
 private void btMedicSelect_Click(object sender, EventArgs e)
 {
     var medicListForm = new MedicListForm(true);
     medicListForm.MedicInsertionEvent +=new MedicListForm.MedicInsertionHandler(medicListForm_MedicInsertionEvent);
     medicListForm.ShowDialog();
 }
Example #4
0
 private void btMedicList_Click(object sender, EventArgs e)
 {
     var medicListForm = new MedicListForm();
     medicListForm.ShowDialog();
 }