I found a problem with a my storical application, after i update to FWH 8.11 version.
PrimoPDF is a printer installed on my system but if I run the sample, return:
"PrimoPDF is not ready!"
I don't understood why!
How to repair?
Many thanks in advance,
- Code: Select all Expand view
- FUNCTION Main()
LOCAL cPrinter := "PrimoPDF", oPrn
PRINT oPrn NAME "Test fivewin" TO cPrinter PREVIEW // MODAL
IF Empty( oPrn:hDC )
MsgStop( cPrinter + " is not ready!!" )
ELSE
MsgINfo( "Printing!" )
ENDIF
PAGE
oPrn:CmSay( 10.0 , 15.0, "TEST" )
ENDPAGE
ENDPRINT
RETURN Nil