Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Report with 4 fields, 4 pages
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire de rapports & Rapports
Divers
Thread ID:
00664374
Message ID:
00664399
Vues:
20
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.
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform