Very very urgent. [message #87542] |
Thu, 13 January 2005 04:54  |
Sreela C S
Messages: 2 Registered: January 2005
|
Junior Member |
|
|
Hi,
our application has around 500 forms. We want to know the details of each and every form (like block name, item name,tables used etc.)
I want to create a form which will open all these 500 forms without displaying these forms and no firing of any triggers in these forms and get all the relevent information.
How do we achieve this?
Please help me out. It is very urgent.
Thanks & Regards,
Sreela C S
|
|
|
Re: Very very urgent. [message #87546 is a reply to message #87542] |
Thu, 13 January 2005 20:16   |
Frank
Messages: 7901 Registered: March 2000
|
Senior Member |
|
|
You could make a txt file from your forms.
for i in `ls *.fmb`
do
f60gen module=$i userid=<<z>username/password> forms_doc=yes batch=yes
l_errcode=${?}
if [ "${l_errcode}" != "0" ]
then
echo Error: ${l_errcode}
fi
done
If this is 'very very urgent', it's your problem. You started too late. Do not bother us with that please. Next time, use a more descriptive subject.
hth
|
|
|
Re: Very very urgent. [message #87569 is a reply to message #87546] |
Mon, 17 January 2005 00:37  |
Sreela C S
Messages: 2 Registered: January 2005
|
Junior Member |
|
|
Hi Frank,
Thanks for your response and sorry for not giving the correct descriptive subject.
The above code is useless for us since we have windows operating system.
How do we achieve the same result using forms? Can you help me please.
Regards,
Screela C S
|
|
|