PDF font
Posted: Thu Aug 08, 2013 2:14 pm
Hi all,
I'm trying to convert a stack to a PDF, in a standalone application. Unfortunately standAlone application use different (and ugly) fonts. I use:
formatForPrinting is always true, but here the differences (click on the preview, the first is the IDE and the second is the StandAlone):

I develop on WinXp, but StandAlone application will work on Win7, can be this the problem?
I'm trying to convert a stack to a PDF, in a standalone application. Unfortunately standAlone application use different (and ugly) fonts. I use:
Code: Select all
on printCards
put "./ProvvigioniAgenti.pdf" into tFile
open printing to pdf tFile
go to card 1
print this stack
close printing
end printCards
on OpenStack
crearereport #this delete all cards and recreate new ones
#printer settings
set the printMargins to "0,0,0,0"
set the printPaperSize to "700,930"
set the formatForPrinting of this stack to true #it's already true, however I put this too
printCards
close this stack
end OpenStack

I develop on WinXp, but StandAlone application will work on Win7, can be this the problem?