private void tlbMenu_DeleteClick()
        {
            try
            {
                Cursor = Cursors.WaitCursor;
                if (XtraMessageBox.Show("Esta seguro de eliminar el registro?", this.Text, MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
                {
                    if (!ValidarIngreso())
                    {
                        DocumentoBE objE_Documento = new DocumentoBE();
                        objE_Documento.IdDocumento = int.Parse(gvDocumento.GetFocusedRowCellValue("IdDocumento").ToString());
                        objE_Documento.Usuario     = Parametros.strUsuarioLogin;
                        objE_Documento.Maquina     = WindowsIdentity.GetCurrent().Name.ToString();
                        objE_Documento.IdEmpresa   = Parametros.intEmpresaId;

                        DocumentoBL objBL_Area = new DocumentoBL();
                        objBL_Area.Elimina(objE_Documento);
                        XtraMessageBox.Show("El registro se eliminó correctamente", this.Text, MessageBoxButtons.OK, MessageBoxIcon.Information);
                        Cargar();
                    }
                }
                Cursor = Cursors.Default;
            }
            catch (Exception ex)
            {
                Cursor = Cursors.Default;
                XtraMessageBox.Show(ex.Message, this.Text, MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }