Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Number of copies in Report
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire de rapports & Rapports
Divers
Thread ID:
00087240
Message ID:
00087534
Vues:
33
>>Does anyone know how could I programatically set the number of copies I want from a report?
>>I don't want to use any print dialog for this because depending on the report it will be printed I know in advance if it will be needed two copies of this report, 3 copies of that other, etc.
>>Thank you.
>Can you not issue the REPORT FORM as many times as you want in your app?
>
>For i = 1 TO 3
> REPORT FORM...
>NEXT i
>
>Now that I think of it... you could actually store the value in a table and make a reference to it at print time. That way, you could change the value in the table if you want to increase or decrease your output.
>
>PROCEDURE PrintIt
>PARAMETERS pcFRXName
>
>IF SEEK(pcFRXName, 'FRXCOUNT')
> lnCount = FRXCOUNT.numprint
>ELSE
> lnCount = 1
>ENDIF
>FOR i = 1 TO lnCount
> REPORT FORM (pcFRXNAME) .....
>NEXT i
>
>RETURN
>
>
>
>WAYNE

Thank you for answering but the problem with your suggestion is that it will take twice or three times the time of preparing the printing before it send it to the printer.

Eduardo
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform