Dear friends, how to speed up a print like this?
Thank you in advance.
EMG
#include "Fivewin.ch"
FUNCTION MAIN()
LOCAL oPrn
LOCAL i
PRINT oPrn NAME "Print test" PREVIEW
FOR i = 1 TO 100
PAGE
oPrn:SayBitmap( 0, 0, "averybigbitmap.bmp", oPrn:nHorzRes(), oPrn:nVertRes() )
ENDPAGE
NEXT
ENDPRINT
RETURN NILThank you in advance.
EMG