private void RefrescarTabla() { try { metroGrid1.DataSource = InvokeCommand.GetLogs().Execute(); CaracteristicasGrid(); } catch (Exception ex) { InvokeCommand.InsertLog().Execute(CreateLog.Clog(ETipoLog.Error, 1, ex.TargetSite.DeclaringType.FullName, ex.TargetSite.Name, "Error carga de datos", ex.StackTrace, ex.Message)); Notifications.FrmError.ErrorForm(Language.SearchValue("errorBuscarDatos") + "\n" + ex.Message); } metroGrid1.ClearSelection(); TxtBuscar.Focus(); }