batch file to convert fmb to fmx [message #86300] |
Mon, 20 September 2004 10:42 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
Vinod
Messages: 76 Registered: April 1999
|
Member |
|
|
I have the following written in a batch file to compile fmb to fmx, pll to plx and mmb to mmx and is working fine on NT
The problem here is that the original timestamp of the fmb is getting changed to the time the batch file was run. I want the original fmb file timestamp to remain and the batch file should just take the fmb file and generate a fmx
REM WINDOWS COMPILE FORMS
::compile_modules.bat
cls
Echo compiling Forms....
for %%f IN (*.pll) do C:ORANTBINifcmp60.EXE userid=scott/tiger@prmd module=%%f batch=yes module_type=library compile_all=yes window_state=minimize
for %%f IN (*.fmb) do C:ORANTBINifcmp60.EXE userid=scott/tiger@prmd module=%%f batch=yes module_type=form compile_all=yes window_state=minimize
for %%f IN (*.mmb) do C:ORANTBINifcmp60.EXE userid=scott/tiger@prmd module=%%f batch=yes module_type=menu compile_all=yes window_state=minimize
ECHO FINISHED COMPILING
how to do this and what is the change that i have to make in the batch file, can anyone help me here
Thanks
Vinod
|
|
|
|
|