Ejemplo n.º 1
0
 protected override void btnModificar_Click(object sender, EventArgs e)
 {
     if (this.dgvDatos.CurrentRow == null)
         return;
     DetalleUsuario u = new DetalleUsuario(Util.Entero(this.dgvDatos.CurrentRow.Cells["UsuarioID"].Value));
     u.ShowDialog();
 }
Ejemplo n.º 2
0
        protected override void btnModificar_Click(object sender, EventArgs e)
        {
            if (this.dgvDatos.CurrentRow == null)
            {
                return;
            }
            DetalleUsuario u = new DetalleUsuario(Util.Entero(this.dgvDatos.CurrentRow.Cells["UsuarioID"].Value));

            u.ShowDialog();
        }
Ejemplo n.º 3
0
 protected override void btnAgregar_Click(object sender, EventArgs e)
 {
     DetalleUsuario u = new DetalleUsuario();
     u.ShowDialog();
 }
Ejemplo n.º 4
0
        protected override void btnAgregar_Click(object sender, EventArgs e)
        {
            DetalleUsuario u = new DetalleUsuario();

            u.ShowDialog();
        }