Changeset: 567 fdbozzo - 13/12/2014 17:27:46:
- Quitados los scripts de recompilación por idioma, que ya no hacen falta ni están incluidos en el zip de la v1.19.38
This commit is contained in:
@@ -1,21 +0,0 @@
|
|||||||
'---------------------------------------------------------------------------------------------------
|
|
||||||
' FoxBin2Prg__Compilar_en_Espa<70>ol.vbs - 10/08/2014 - Fernando D. Bozzo (fdbozzo@gmail.com)
|
|
||||||
'---------------------------------------------------------------------------------------------------
|
|
||||||
' - FoxBin2Prg ya viene en Espa<70>ol por defecto, pero si lo llega a necesitar, solo ejecute este script.
|
|
||||||
'---------------------------------------------------------------------------------------------------
|
|
||||||
Const ForReading = 1
|
|
||||||
Dim WSHShell, FileSystemObject
|
|
||||||
Dim oVFP9, nExitCode, cOrigFile, cDestFile
|
|
||||||
Dim nRet
|
|
||||||
Set WSHShell = WScript.CreateObject("WScript.Shell")
|
|
||||||
Set FileSystemObject = WScript.CreateObject("Scripting.FileSystemObject")
|
|
||||||
Set oVFP9 = CreateObject("VisualFoxPro.Application.9")
|
|
||||||
foxbin2prg_exe = Replace(WScript.ScriptFullName, WScript.ScriptName, "foxbin2prg.exe")
|
|
||||||
nExitCode = 0
|
|
||||||
cOrigFile = Replace(WScript.ScriptFullName, WScript.ScriptName, "foxbin2prg.h")
|
|
||||||
cPath = FileSystemObject.GetParentFolderName( cOrigFile )
|
|
||||||
nRet = FileSystemObject.DeleteFile( cOrigFile, True )
|
|
||||||
oVFP9.DoCmd( "SET DEFAULT TO '" & cPath & "'" )
|
|
||||||
oVFP9.DoCmd( "BUILD EXE foxbin2prg.exe FROM foxbin2prg.pjx RECOMPILE" )
|
|
||||||
WSHShell.run foxbin2prg_exe
|
|
||||||
WScript.Quit(nExitCode)
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
'---------------------------------------------------------------------------------------------------
|
|
||||||
' FoxBin2Prg__Compile_in_English.vbs - 10/08/2014 - Fernando D. Bozzo (fdbozzo@gmail.com)
|
|
||||||
'---------------------------------------------------------------------------------------------------
|
|
||||||
' - Just execute on FoxBin2Prg main directory, and you get an EXE with texts translated
|
|
||||||
'---------------------------------------------------------------------------------------------------
|
|
||||||
Const ForReading = 1
|
|
||||||
Dim WSHShell, FileSystemObject
|
|
||||||
Dim oVFP9, nExitCode, cOrigFile, cDestFile
|
|
||||||
Dim nRet
|
|
||||||
Set WSHShell = WScript.CreateObject("WScript.Shell")
|
|
||||||
Set FileSystemObject = WScript.CreateObject("Scripting.FileSystemObject")
|
|
||||||
Set oVFP9 = CreateObject("VisualFoxPro.Application.9")
|
|
||||||
foxbin2prg_exe = Replace(WScript.ScriptFullName, WScript.ScriptName, "foxbin2prg.exe")
|
|
||||||
nExitCode = 0
|
|
||||||
cOrigFile = Replace(WScript.ScriptFullName, WScript.ScriptName, "foxbin2prg_en.h")
|
|
||||||
cDestFile = Replace(WScript.ScriptFullName, WScript.ScriptName, "foxbin2prg.h")
|
|
||||||
cPath = FileSystemObject.GetParentFolderName( cOrigFile )
|
|
||||||
nRet = FileSystemObject.CopyFile( cOrigFile, cDestFile, True )
|
|
||||||
oVFP9.DoCmd( "SET DEFAULT TO '" & cPath & "'" )
|
|
||||||
oVFP9.DoCmd( "BUILD EXE foxbin2prg.exe FROM foxbin2prg.pjx RECOMPILE" )
|
|
||||||
WSHShell.run foxbin2prg_exe
|
|
||||||
WScript.Quit(nExitCode)
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
'---------------------------------------------------------------------------------------------------
|
|
||||||
' FoxBin2Prg__kompilieren_auf_Deutsch.vbs - 10/08/2014 - Fernando D. Bozzo (fdbozzo@gmail.com)
|
|
||||||
'---------------------------------------------------------------------------------------------------
|
|
||||||
' - F<>hren Sie einfach auf FoxBin2Prg Hauptverzeichnis, und Sie erhalten eine EXE-Datei mit Texten <20>bersetzt bekommen
|
|
||||||
'---------------------------------------------------------------------------------------------------
|
|
||||||
Const ForReading = 1
|
|
||||||
Dim WSHShell, FileSystemObject
|
|
||||||
Dim oVFP9, nExitCode, cOrigFile, cDestFile
|
|
||||||
Dim nRet
|
|
||||||
Set WSHShell = WScript.CreateObject("WScript.Shell")
|
|
||||||
Set FileSystemObject = WScript.CreateObject("Scripting.FileSystemObject")
|
|
||||||
Set oVFP9 = CreateObject("VisualFoxPro.Application.9")
|
|
||||||
foxbin2prg_exe = Replace(WScript.ScriptFullName, WScript.ScriptName, "foxbin2prg.exe")
|
|
||||||
nExitCode = 0
|
|
||||||
cOrigFile = Replace(WScript.ScriptFullName, WScript.ScriptName, "foxbin2prg_de.h")
|
|
||||||
cDestFile = Replace(WScript.ScriptFullName, WScript.ScriptName, "foxbin2prg.h")
|
|
||||||
cPath = FileSystemObject.GetParentFolderName( cOrigFile )
|
|
||||||
nRet = FileSystemObject.CopyFile( cOrigFile, cDestFile, True )
|
|
||||||
oVFP9.DoCmd( "SET DEFAULT TO '" & cPath & "'" )
|
|
||||||
oVFP9.DoCmd( "BUILD EXE foxbin2prg.exe FROM foxbin2prg.pjx RECOMPILE" )
|
|
||||||
WSHShell.run foxbin2prg_exe
|
|
||||||
WScript.Quit(nExitCode)
|
|
||||||
Reference in New Issue
Block a user