Changeset: 410 fdbozzo - 16/08/2014 15:39:44:

- Limpieza de código basura en campo methods, normalmente puesto por programas como ReFox y otros
This commit is contained in:
fdbozzo
2014-08-16 15:40:21 +02:00
parent 30a0dcfa19
commit a8cb0ee57b
2 changed files with 53 additions and 7 deletions

View File

@@ -9,7 +9,7 @@
'---------------------------------------------------------------------------------------------------
Const ForReading = 1
Dim WSHShell, FileSystemObject
Dim oVFP9, nExitCode, cEXETool, cCMD, nDebug, cConvertType, aExtensions(8), filename_caps_log
Dim oVFP9, nExitCode, cEXETool, cCMD, nDebug, cConvertType, aExtensions(8), filename_caps_log, nRet
Dim i, x, str_cfg, aConf
Set WSHShell = WScript.CreateObject("WScript.Shell")
Set FileSystemObject = WScript.CreateObject("Scripting.FileSystemObject")
@@ -91,7 +91,7 @@ Private Sub evaluateFile( tcFile )
If cFlagJustShowCall = "1" Then
MsgBox cCMD, 0, "PARAMETERS"
Else
oVFP9.DoCmd( cCMD )
nRet = oVFP9.DoCmd( cCMD )
'nExitCode = oVFP9.Eval("_SCREEN.ExitCode")
End If
End Sub