protected override void btnModificar_Click(object sender, EventArgs e) { if (this.dgvDatos.CurrentRow == null) return; DetalleUbicacion u = new DetalleUbicacion(Util.Entero(this.dgvDatos.CurrentRow.Cells["ParteUbicacionID"].Value)); u.ShowDialog(); }
protected override void btnModificar_Click(object sender, EventArgs e) { if (this.dgvDatos.CurrentRow == null) { return; } DetalleUbicacion u = new DetalleUbicacion(Util.Entero(this.dgvDatos.CurrentRow.Cells["ParteUbicacionID"].Value)); u.ShowDialog(); }
protected override void btnAgregar_Click(object sender, EventArgs e) { DetalleUbicacion u = new DetalleUbicacion(); u.ShowDialog(); }