Ejemplo n.º 1
0
        private void btnagregar_Click(object sender, EventArgs e)
        {
            EdicionCitas frm = new EdicionCitas();

            frm.ShowDialog();
            CargarFechaCita();
        }
Ejemplo n.º 2
0
        private void btneditar_Click(object sender, EventArgs e)
        {
            EdicionCitas frm = new EdicionCitas();

            frm._IDCita       = dtgfichacitas.CurrentRow.Cells["IDCita"].Value.ToString();
            frm._IDPaciente   = dtgfichacitas.CurrentRow.Cells["IDPaciente"].Value.ToString();
            frm._IDDoctor     = dtgfichacitas.CurrentRow.Cells["IDDoctor"].Value.ToString();
            frm._IDConsulta   = dtgfichacitas.CurrentRow.Cells["IDConsulta"].Value.ToString();
            frm._FechaPrixima = dtgfichacitas.CurrentRow.Cells["FechaProxima"].Value.ToString();
            frm.ShowDialog();
            CargarFechaCita();
        }