Posted: Sun Dec 01, 2002 11:32 am
Restored from previous forum. Originally posted by OlliB.
Is there a way to print in Landscape in PureBasic?
The API-Call "Escape" can do this, but can I use it together with PureBasic-Calls?
Can I use for Printing only API-Calls in my PureBasic Program?
I get no printing with the calls like :
Can anybody help me? Or is there no way, to print directly landscape?
Is there a way to print in Landscape in PureBasic?
The API-Call "Escape" can do this, but can I use it together with PureBasic-Calls?
Can I use for Printing only API-Calls in my PureBasic Program?
I get no printing with the calls like :
Code: Select all
If OpenPrinter_(1,@printer,0)
Escape(@printer,2,0,0)
StartPage_(@printer)
Textout_(@printer,100,100,"!!!",3)
EndPage_(@printer)
ClosePrinter_(@printer)
EndIf