Beispiel #1
0
        private void tb_click(object sender, DataGridViewCellEventArgs e)
        {
            DataGridView dg = sender as DataGridView;

            try
            {
                if (e.ColumnIndex == 1 && e.RowIndex != -1)
                {
                    var      id  = dg.Rows[e.RowIndex].Cells[0].Value;
                    Dentista obj = service.Buscar(Convert.ToInt32(id));

                    var form = new frmEditarDentista(obj);
                    form.ShowDialog();

                    if (form.status == "apagado")
                    {
                        this.Close();
                        frmConDentista frm = new frmConDentista();
                        frm.ShowDialog();
                    }
                    if (form.status == "editado")
                    {
                        dg.Rows.RemoveAt(e.RowIndex);
                        GerarLinha(dg, obj);
                    }
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show("Erro ao selecionar o dentista " + ex.Message);
            }
        }
Beispiel #2
0
        private void menuAgDentistas_Click(object sender, EventArgs e)
        {
            frmConDentista frm = new frmConDentista();

            frm.ShowDialog();
        }
        private void btnConsulta_Click(object sender, EventArgs e)
        {
            frmConDentista frm = new frmConDentista();

            frm.ShowDialog();
        }