Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Multi-page report with NO "detail" lines

Status
Not open for further replies.

amwprogg

Programmer
Jul 8, 2005
52
GB
Hi all.
I'm just getting to know the ins and outs of VFP9, and I have to write a report that is about three or four pages long and has NO "detail" (repeating) data lines. If I create the report in the HEADER or FOOTER areas it just says the report is "too big"!
What would be my best options under these circumstances?
Any advice would be greatly appreciated.
Andy.
 

Hi amwprogg

Put your details in the "detail" section
then create a cursor with the no of records
being the same as the pages.

Something like:

select 0
create cursor MyPages (pg n(2))

insert into MyPages values(1)
insert into MyPages values(1)
insert into MyPages values(1)
insert into MyPages values(1)

report format MyReport preview

Benson


---------------------------
Benson O. A.
Infinity Link Limited
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top