Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
How does one get a form to run on Unix?
How does one get a form to run on Unix?
✍: Guest
You need to design your form on your workstation. FTP or copy the Forms's FMB file to the Unix box. If you generate for a terminal environment (character based), the syntax is:
f45gen USERID=userid/passwd@db_name MODULE_TYPE=FORM MODULE=module_name
If you want to generate a Library file, replace FORM with LIBRARY. Use f45genm to generate your form in a Motif environment.
Use the "f45run" command to run your form. Forms 6i uses commands f60gen, f60run, etc.
2011-05-10, 3758👍, 0💬
Popular Posts:
What will be printed as the result of the operation below: main() { int x=10, y=15; x = x++; y = ++y...
How can we know the number of days between two given dates in PHP? Simple arithmetic: <?php $...
How can we format data inside DataGrid? Use the DataFormatString property.
How can you determine the size of an allocated portion of memory? You can't, really. free() can , bu...
How To Enter Microseconds in SQL Statements? - MySQL FAQs - Introduction to SQL Date and Time Handli...