Hello
I have issues with various reports after I upgraded from VFP8 to VFP9.
Basically, I create a local cursor in my form and issue the following command to print the report.
In the report, the fields refer to the cursor by cur_mycursor.fieldname. some reports omit the cur_mycursor.
What happens is that when I run the report as above, it does not print correctly, mainly by only showing 2 details lines (both the same) when there are several pages of data.
However, if I run the preview and print from there, all is fine.
Some reports are OK, some not.
I have tried SET REPORTBEHAVIOR 80 but that didn't work.
I have tried the dataenvironment as private and default, but that didnt work.
Anyone any ideas? Driving me mad.
Thanks
I have issues with various reports after I upgraded from VFP8 to VFP9.
Basically, I create a local cursor in my form and issue the following command to print the report.
Code:
SELECT cur_mycursor
GO TOP
REPORT FORM myreport TO PRINTER PROMPT NOCONSOLE
In the report, the fields refer to the cursor by cur_mycursor.fieldname. some reports omit the cur_mycursor.
What happens is that when I run the report as above, it does not print correctly, mainly by only showing 2 details lines (both the same) when there are several pages of data.
However, if I run the preview and print from there, all is fine.
Some reports are OK, some not.
I have tried SET REPORTBEHAVIOR 80 but that didn't work.
I have tried the dataenvironment as private and default, but that didnt work.
Anyone any ideas? Driving me mad.
Thanks