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(); }
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(); }
protected override void btnAgregar_Click(object sender, EventArgs e) { DetalleUsuario u = new DetalleUsuario(); u.ShowDialog(); }