Changeset: 411 fdbozzo - 19/08/2014 23:51:29:
- Agregada versión del EXE cuando se genera LOG de depuración
This commit is contained in:
@@ -98,6 +98,7 @@
|
|||||||
* 29/07/2014 FDBOZZO v1.19.29 Arreglo bug vcx/scx: Un campo de tabla llamado "text" que comienza la l<>nea puede confundirse con la estructura TEXT/ENDTEXT y reconocer mal el resto del c<>digo
|
* 29/07/2014 FDBOZZO v1.19.29 Arreglo bug vcx/scx: Un campo de tabla llamado "text" que comienza la l<>nea puede confundirse con la estructura TEXT/ENDTEXT y reconocer mal el resto del c<>digo
|
||||||
* 07/08/2014 FDBOZZO v1.19.30 Arreglo bug vcx/scx: Cuando la l<>nea anterior a un ENDTEXT termina en ";" o "," no se reconoce como ENDTEXT sino como continuaci<63>n (Jim Nelson)
|
* 07/08/2014 FDBOZZO v1.19.30 Arreglo bug vcx/scx: Cuando la l<>nea anterior a un ENDTEXT termina en ";" o "," no se reconoce como ENDTEXT sino como continuaci<63>n (Jim Nelson)
|
||||||
* 08/08/2014 FDBOZZO v1.19.30 Arreglo bug vcx/vct v1.19.29: En ciertos casos de herencia no se mantiene el orden alfabetico de algunos metodos (Ryan Harris)
|
* 08/08/2014 FDBOZZO v1.19.30 Arreglo bug vcx/vct v1.19.29: En ciertos casos de herencia no se mantiene el orden alfabetico de algunos metodos (Ryan Harris)
|
||||||
|
* 17/08/2014 FDBOZZO v1.19.31 Agregada versi<73>n del EXE cuando se genera LOG de depuraci<63>n
|
||||||
* </HISTORIAL DE CAMBIOS Y NOTAS IMPORTANTES>
|
* </HISTORIAL DE CAMBIOS Y NOTAS IMPORTANTES>
|
||||||
*
|
*
|
||||||
*---------------------------------------------------------------------------------------------------
|
*---------------------------------------------------------------------------------------------------
|
||||||
@@ -435,6 +436,7 @@ DEFINE CLASS c_foxbin2prg AS CUSTOM
|
|||||||
#ENDIF
|
#ENDIF
|
||||||
_MEMBERDATA = [<VFPData>] ;
|
_MEMBERDATA = [<VFPData>] ;
|
||||||
+ [<memberdata name="convertir" display="Convertir"/>] ;
|
+ [<memberdata name="convertir" display="Convertir"/>] ;
|
||||||
|
+ [<memberdata name="c_fb2prg_exe_version" display="c_FB2PRG_EXE_Version"/>] ;
|
||||||
+ [<memberdata name="c_curdir" display="c_CurDir"/>] ;
|
+ [<memberdata name="c_curdir" display="c_CurDir"/>] ;
|
||||||
+ [<memberdata name="c_errorlog" display="c_ErrorLog"/>] ;
|
+ [<memberdata name="c_errorlog" display="c_ErrorLog"/>] ;
|
||||||
+ [<memberdata name="c_foxbin2prg_fullpath" display="c_Foxbin2prg_FullPath"/>] ;
|
+ [<memberdata name="c_foxbin2prg_fullpath" display="c_Foxbin2prg_FullPath"/>] ;
|
||||||
@@ -521,6 +523,7 @@ DEFINE CLASS c_foxbin2prg AS CUSTOM
|
|||||||
*-- Localized properties
|
*-- Localized properties
|
||||||
c_loc_processing_file = C_PROCESSING_LOC
|
c_loc_processing_file = C_PROCESSING_LOC
|
||||||
*--
|
*--
|
||||||
|
c_FB2PRG_EXE_Version = 0
|
||||||
c_Foxbin2prg_FullPath = ''
|
c_Foxbin2prg_FullPath = ''
|
||||||
c_Foxbin2prg_ConfigFile = ''
|
c_Foxbin2prg_ConfigFile = ''
|
||||||
c_CurDir = ''
|
c_CurDir = ''
|
||||||
@@ -582,7 +585,7 @@ DEFINE CLASS c_foxbin2prg AS CUSTOM
|
|||||||
|
|
||||||
|
|
||||||
PROCEDURE INIT
|
PROCEDURE INIT
|
||||||
LOCAL lcSys16, lnPosProg
|
LOCAL lcSys16, lnPosProg, lc_Foxbin2prg_EXE, laValues(1,5)
|
||||||
SET DELETED ON
|
SET DELETED ON
|
||||||
SET DATE YMD
|
SET DATE YMD
|
||||||
SET HOURS TO 24
|
SET HOURS TO 24
|
||||||
@@ -604,6 +607,8 @@ DEFINE CLASS c_foxbin2prg AS CUSTOM
|
|||||||
THIS.c_CurDir = SYS(5) + CURDIR()
|
THIS.c_CurDir = SYS(5) + CURDIR()
|
||||||
THIS.o_FSO = NEWOBJECT("Scripting.FileSystemObject")
|
THIS.o_FSO = NEWOBJECT("Scripting.FileSystemObject")
|
||||||
THIS.o_Configuration = CREATEOBJECT("COLLECTION")
|
THIS.o_Configuration = CREATEOBJECT("COLLECTION")
|
||||||
|
lc_Foxbin2prg_EXE = FORCEEXT( THIS.c_Foxbin2prg_FullPath, 'EXE' )
|
||||||
|
THIS.c_FB2PRG_EXE_Version = IIF( AGETFILEVERSION( laValues, lc_Foxbin2prg_EXE ) = 0, TRANSFORM(THIS.n_FB2PRG_Version), laValues(4) )
|
||||||
ADDPROPERTY(_SCREEN, 'ExitCode', 0)
|
ADDPROPERTY(_SCREEN, 'ExitCode', 0)
|
||||||
RETURN
|
RETURN
|
||||||
ENDPROC
|
ENDPROC
|
||||||
@@ -1491,7 +1496,8 @@ DEFINE CLASS c_foxbin2prg AS CUSTOM
|
|||||||
WITH THIS AS c_foxbin2prg OF 'FOXBIN2PRG.PRG'
|
WITH THIS AS c_foxbin2prg OF 'FOXBIN2PRG.PRG'
|
||||||
lnCodError = 0
|
lnCodError = 0
|
||||||
|
|
||||||
.writeLog( .c_Foxbin2prg_FullPath + CR_LF ;
|
.writeLog( '---' )
|
||||||
|
.writeLog( .c_Foxbin2prg_FullPath + ' (EXE Version: ' + .c_FB2PRG_EXE_Version + ')' + CR_LF ;
|
||||||
+ C_TAB + 'tc_InputFile: ' + TRANSFORM(tc_InputFile) + CR_LF ;
|
+ C_TAB + 'tc_InputFile: ' + TRANSFORM(tc_InputFile) + CR_LF ;
|
||||||
+ C_TAB + 'tcType: ' + TRANSFORM(tcType) + CR_LF;
|
+ C_TAB + 'tcType: ' + TRANSFORM(tcType) + CR_LF;
|
||||||
+ C_TAB + 'tcTextName: ' + TRANSFORM(tcTextName) + CR_LF ;
|
+ C_TAB + 'tcTextName: ' + TRANSFORM(tcTextName) + CR_LF ;
|
||||||
|
|||||||
Reference in New Issue
Block a user