skgupta
17th December 2005, 12:15
Dear

I have 30 fields in On Form in a one report, 15 fields in one form rest on second form, and add both form in report, First form working fine but second form did not active for putting values.

Please help


S K Gupta

mark_h
18th December 2005, 01:52
More information would probably help others make suggestions. Sounds like you have data on two forms and want that to come out on a report. Make sure all fields are extern and declared as input on the report. Depending on how the form and fields are set-up you need to make sure the data is loaded before sending to a report.

en@frrom
19th December 2005, 09:53
You should enable the standard form commands next form, last form, previous form etc.

skgupta
19th December 2005, 10:17
i am using below command on report script and declarated mitm on extern domain tcitem mitm(30). first form is ok but second form did not active.


for i = 1 to 30
if isspace(mitm(1, i)) then
break
endif

mr_suleyman
19th December 2005, 10:35
I don't understand your problem clearly , but you use tcitem domain for mitm that has 30 length string. Try following structure

for i=1 to 30
if isspace(mitm(i;1)) then
break
endif


Good luck !!!

skgupta
19th December 2005, 12:27
thanks en@frrom

done by stand. opt on form after click next form, last form, previous form etc, but when i put data on form 1 and goto form 2 for puting data, i can not go again form 1

waiting your reply

regards,

Youp2001
19th December 2005, 12:45
Seems that you only have activated standard options next.form, previous.form etc for the first form. You should do the same for the second form.


Youp

skgupta
19th December 2005, 12:49
thanks youp2001 and all of you

regards,

bdittmar
19th December 2005, 15:33
thanks en@frrom

done by stand. opt on form after click next form, last form, previous form etc, but when i put data on form 1 and goto form 2 for puting data, i can not go again form 1

waiting your reply

regards,

Hello,

maybe std. option previous will be missing on form 2 ?

Regards