Compile all forms through batch [message #115632] |
Wed, 13 April 2005 05:39  |
hsinghalmrt
Messages: 51 Registered: March 2005
|
Member |
|
|
Hi all,
pls find the solution
i have used the batch file
@echo off
@echo. +----------------------------------------------------------
@echo. | FMXGNALL.BAT
@echo. +----------------------------------------------------------
@echo. |
@echo. | Create runtime FMXs from source FMBs
@echo. | Will convert ALL of the fmbs in the current direcotry
@echo. | Usage : FMXALL.BAT username/password@connect string
@echo. |
@echo. +----------------------------------------------------------
@echo.
@echo. atlascalls/atlascalls@indv = %1
@echo.
IF %1 == "" GOTO END
@echo Removing old FMX files
del *.fmx
@echo Creating the new FMX files
rem Change f45gen32 to f45gen if in 16 bit environment.
FOR %%F in (*.fmb) DO start /w f45gen32 userid=%1 batch=y module=%%F
echo %%F
@echo.
@echo Done!!! Remember to move the FMX files into your runtime directory.
@echo.
:END
but when i am rumming this command on the command prompt then
syntax of command is incorrect error is coming.
|
|
|
|
|
|
|