Changeset: 530 fdbozzo - 29/11/2014 17:16:34:

- Agregado control para detectar reportes no compatibles con VFP 9
- Agregada posibilidad de cancelar proceso con tecla Esc
- Varias mejoras al indicador de progreso
- Adaptados los scripts vbs para el nuevo funcionamiento del indicador de progreso y cancelación
This commit is contained in:
fdbozzo
2014-11-30 16:32:35 +01:00
parent 5af062db63
commit d464d6541c
6 changed files with 251 additions and 160 deletions

View File

@@ -61,7 +61,7 @@ Else
oVFP9.DoCmd( "SET PROCEDURE TO '" & cEXETool & "'" )
oVFP9.DoCmd( "PUBLIC oFoxBin2prg" )
oVFP9.DoCmd( "oFoxBin2prg = CREATEOBJECT('c_foxbin2prg')" )
oVFP9.DoCmd( "oFoxBin2prg.EvaluarConfiguracion( '1', '1' )" )
oVFP9.DoCmd( "oFoxBin2prg.cargar_frm_avance()" )
cFlagGenerateLog = "'0'"
cFlagDontShowErrMsg = "'0'"
@@ -87,7 +87,7 @@ Else
cCMD = "oFoxBin2prg.ejecutar( '" & WScript.Arguments(0) & "' )"
Else
cCMD = "oFoxBin2prg.ejecutar( '" & WScript.Arguments(0) & "','0','0','0'," _
& cFlagDontShowErrMsg & "," & cFlagGenerateLog & ",'1','','',.F.,''," _
& cFlagDontShowErrMsg & "," & cFlagGenerateLog & ",'0','','',.F.,''," _
& cFlagRecompile & "," & cNoTimestamps & " )"
End If
If cFlagJustShowCall = "1" Then
@@ -113,7 +113,7 @@ Else
Set oVFP9 = Nothing
End If
WScript.Quit(nExitCode)
WScript.Quit nExitCode
Function GetBit(lngValue, BitNum)