private void btnNuevo_Click(object sender, EventArgs e)
 {
     try
     {
         frmSuministrosCrud oFrmSumCrud = new frmSuministrosCrud(0, "H");
         if (oFrmSumCrud.ShowDialog() == DialogResult.OK)
         {
             _oSuministrosAdmin.CargarGrilla(_Tabla);
         }
     }
     catch (Exception ex)
     {
         Cursor.Current = Cursors.Default;
         ManejarError Err = new ManejarError();
         Err.CargarError(ex,
                         e.ToString(),
                         ((Control)sender).Name,
                         this.FindForm().Name);
     }
 }
 private void btnVer_Click(object sender, EventArgs e)
 {
     try
     {
         DataGridViewRow    row         = this.dgBusqueda.CurrentRow;
         long               id          = Convert.ToInt64(row.Cells[0].Value);
         frmSuministrosCrud oFrmSumCrud = new frmSuministrosCrud(id, "H");
         oFrmSumCrud.gbDatos.Enabled = false;
         if (oFrmSumCrud.ShowDialog() == DialogResult.OK)
         {
             _oSuministrosAdmin.CargarGrilla(_Tabla);
         }
     }
     catch (Exception ex)
     {
         Cursor.Current = Cursors.Default;
         ManejarError Err = new ManejarError();
         Err.CargarError(ex,
                         e.ToString(),
                         ((Control)sender).Name,
                         this.FindForm().Name);
     }
 }