From 0047990e26125d9c55aefba3efb008c8e539aba2 Mon Sep 17 00:00:00 2001 From: fdbozzo Date: Sat, 20 Jun 2015 01:01:14 +0200 Subject: [PATCH] =?UTF-8?q?Bug=20Fix:=20Cuando=20se=20procesan=20m=C3=BAlt?= =?UTF-8?q?iples=20archivos,=20a=20veces=20los=20errores=20no=20se=20muest?= =?UTF-8?q?ran?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- foxbin2prg.prg | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/foxbin2prg.prg b/foxbin2prg.prg index c076d1d..5405431 100644 --- a/foxbin2prg.prg +++ b/foxbin2prg.prg @@ -2986,7 +2986,7 @@ DEFINE CLASS c_foxbin2prg AS Session CASE lnCodError = 1799 && Conversion Cancelled MESSAGEBOX( loLang.C_CONVERSION_CANCELLED_BY_USER_LOC + '!', 0+64+4096, 'FoxBin2Prg ' + THIS.c_FB2PRG_EXE_Version, 60000 ) - CASE THIS.l_Error + CASE THIS.l_Errors IF ADIR(laDirInfo, THIS.c_ErrorLogFile) > 0 THEN MESSAGEBOX( loLang.C_END_OF_PROCESS_LOC + '! (' + loLang.C_WITH_ERRORS_LOC + ')', 0+48+4096, 'FoxBin2Prg ' + THIS.c_FB2PRG_EXE_Version, 60000 ) loWSH.Run( THIS.c_ErrorLogFile, 3 ) @@ -3001,14 +3001,10 @@ DEFINE CLASS c_foxbin2prg AS Session ENDCASE - IF EMPTY(lnCodError) AND THIS.l_Error + IF EMPTY(lnCodError) AND THIS.l_Errors lnCodError = 1098 ENDIF - IF lnCodError > 0 THEN - THIS.l_Errors = .T. - ENDIF - SET NOTIFY &lc_OldSetNotify. STORE NULL TO loFSO, loWSH RELEASE tc_InputFile, tcType, tcTextName, tlGenText, tcDontShowErrors, tcDebug, tcDontShowProgress ; @@ -4113,6 +4109,7 @@ DEFINE CLASS c_foxbin2prg AS Session .errOut(tcText) .l_Error = .T. + .l_Errors = .T. ENDWITH CATCH ENDTRY