Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How can I generate all my forms in a batch?
How can I generate all my forms in a batch?
✍: Guest
Look at this DOS Batch file example:
@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. Username/Password@connect_string = %1
+
@echo.
+
+
IF %1 == "" GOTO END
+
+
@echo Removing old FMX files
+
del *.fmx
+
+
@echo Creating the new FMX files
+
rem FOR %%F in (*.fmb) DO start /w f45gen32 userid=%1 batch=y module=%%F
+
FOR %%F in (*.fmb) DO start /w ifcmp90.exe userid=%1 module=%%F
+
@echo.
+
@echo Done!!! Remember to move the FMX files into your runtime directory.
+
@echo.
+
:END
2011-05-10, 5262👍, 0💬
Popular Posts:
How do we configure “WebGarden”? “Web garden” can be configured by using process model settings in...
What are some advantages and disadvantages of Java Sockets? Advantages of Java Sockets: Sockets are ...
What does XmlValidatingReader class do? XmlTextReader class does not validate the contents of an XML...
An application needs to load a library before it starts to run, how to code? One option is to use a ...
How To Recover a Dropped Index? - Oracle DBA FAQ - Managing Oracle Table Indexes If you have the rec...