private void TsBtnNuevo_Click(object sender, EventArgs e)
        {
            FrmDoctores frmdoctores = new FrmDoctores();

            frmdoctores.ShowDialog();
            CargarDatos();
            frmdoctores.AutoClave();
        }
        private void TsBtnEditar_Click(object sender, EventArgs e)
        {
            FrmDoctores n = new FrmDoctores();

            n.Text       = "Editar registro de Doctor";
            n.TipoEstado = false;
            n.Clave      = Convert.ToInt32(DgvDatos.SelectedRows[0].Cells[0].Value.ToString());
            n.ShowDialog();
            CargarDatos();

            DgvDatos.Sort(DgvDatos.Columns[0], ListSortDirection.Ascending);
        }