示例#1
0
        private void addButton_Click(object sender, EventArgs e)
        {
            var addForm = new AppointmentAddEditForm(this);

            addForm.Show();
            appointmentDataGridView.ClearSelection();
            Hide();
        }
示例#2
0
 private void editButton_Click(object sender, EventArgs e)
 {
     try
     {
         if (appointmentDataGridView.SelectedRows.Count < 1)
         {
             throw new ApplicationException("You must select an appointment to edit.");
         }
         var selectedRow           = appointmentDataGridView.SelectedRows[0];
         int selectedAppointmentId = Convert.ToInt32(selectedRow.Cells[0].Value);
         var editForm = new AppointmentAddEditForm(this, selectedAppointmentId);
         editForm.Show();
         appointmentDataGridView.ClearSelection();
         Hide();
     }
     catch (ApplicationException error)
     {
         MessageBox.Show(error.Message, "Instructions", MessageBoxButtons.OK);
     }
     catch (Exception err)
     {
         MessageBox.Show(err.Message, "Error", MessageBoxButtons.OK);
     }
 }