Exemple #1
0
 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();
 }
Exemple #2
0
        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();
        }
Exemple #3
0
        protected override void btnAgregar_Click(object sender, EventArgs e)
        {
            DetalleUbicacion u = new DetalleUbicacion();

            u.ShowDialog();
        }
Exemple #4
0
 protected override void btnAgregar_Click(object sender, EventArgs e)
 {
     DetalleUbicacion u = new DetalleUbicacion();
     u.ShowDialog();
 }