Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How do I print with huge fonts?
Message
De
11/12/2013 05:54:45
 
 
À
10/12/2013 19:37:31
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire de rapports & Rapports
Versions des environnements
Visual FoxPro:
VFP 9 SP1
OS:
Windows Server 2012
Network:
Windows 2008 Server
Database:
MS SQL Server
Application:
Web
Divers
Thread ID:
01589794
Message ID:
01589815
Vues:
82
>I have a problem where I need to print using a really HUGE font -- the sample Excel sheet given to me uses Book Antigua with font size = 175.
>

Hi Jim
You can do it with www.report-sculptor.com See picture attached.

Albeit with the script rather then FRX.

Here is script that produces this printout ;
local oRS as rsEngine
oRS = GetRsObject()  

with oRS
    .lAutoPageHeader=.f.
    .lAutoPageFooter=.f.
    .rsPageFormat='A4'  &&Also Available A3 , LETTER 
    .rsPageOrientation='LANDSCAPE'
    

    .OpenSession()
    .DrawBox( .nTop , 25 , .nTop + 740, 1100 , 3, rgb(255,128,128) )
    
    .lf(12)

    .lw(10, '123456','Book Antiqua',275,1, rgb(255,0,128) )

    .CloseSession()
endwith

oRS.output(1)  

**Or
*cTifFile=oRS.output( 4 , .t. )  &&TIF with Preview via default app
*cPdfFile=oRS.output( 5 , .t. )  &&PDF with Preview via default app
Download RS Demo project, then try above code.

HTH
Sergio
*****************
Srdjan Djordjevic
Limassol, Cyprus

Free Reporting Framework for VFP9 ;
www.Report-Sculptor.Com
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform