Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Report with 4 fields, 4 pages
Message
General information
Forum:
Visual FoxPro
Category:
Reports & Report designer
Miscellaneous
Thread ID:
00664374
Message ID:
00664399
Views:
22
Hans-Henrik,

Here's an easy brute force way;
CREATE CURSOR ReportStuff ;
       (Pict M, ;
        Caption C(120))

USE YourTable
INSERT INTO ReportStuff (Pict, Caption) ;
       VALUES (YourTable.Picture1, "First Picture")
INSERT INTO ReportStuff (Pict, Caption) ;
       VALUES (YourTable.Picture2, "Second Picture")
INSERT INTO ReportStuff (Pict, Caption) ;
       VALUES (YourTable.Picture3, "Third Picture")
INSERT INTO ReportStuff (Pict, Caption) ;
       VALUES (YourTable.Picture4, "Fourth Picture")

REPORT FORM YourReport ...
Make your report form print the Pict field and group on RECNO(). Start new group on new page.
Previous
Reply
Map
View

Click here to load this message in the networking platform