private void tlbMenu_NewClick()
 {
     try
     {
         frmManNegocioEdit objManNegocio = new frmManNegocioEdit();
         objManNegocio.lstNegocio    = mLista;
         objManNegocio.pOperacion    = frmManNegocioEdit.Operacion.Nuevo;
         objManNegocio.IdNegocio     = 0;
         objManNegocio.StartPosition = FormStartPosition.CenterParent;
         objManNegocio.ShowDialog();
         Cargar();
     }
     catch (Exception ex)
     {
         XtraMessageBox.Show(ex.Message, this.Text, MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }
        public void InicializarModificar()
        {
            if (gvNegocio.RowCount > 0)
            {
                NegocioBE objNegocio = new NegocioBE();
                objNegocio.IdNegocio   = int.Parse(gvNegocio.GetFocusedRowCellValue("IdNegocio").ToString());
                objNegocio.DescNegocio = gvNegocio.GetFocusedRowCellValue("DescNegocio").ToString();
                objNegocio.FlagEstado  = Convert.ToBoolean(gvNegocio.GetFocusedRowCellValue("FlagEstado").ToString());

                frmManNegocioEdit objManNegocioEdit = new frmManNegocioEdit();
                objManNegocioEdit.pOperacion    = frmManNegocioEdit.Operacion.Modificar;
                objManNegocioEdit.IdNegocio     = objNegocio.IdNegocio;
                objManNegocioEdit.pNegocioBE    = objNegocio;
                objManNegocioEdit.StartPosition = FormStartPosition.CenterParent;
                objManNegocioEdit.ShowDialog();

                Cargar();
            }
            else
            {
                MessageBox.Show("No se pudo editar");
            }
        }