You are right. Thanks for pointing this out.
This is a bug introduced in FWH1909 and effects this version only.
Fixed in the next version to be released.
Till then, please apply this fix by modifying report.prg
In the METHOD Activate() of TReport class in report.prg, please locate these lines 912 to 923
- Code: Select all Expand view
ACTIVATE DIALOG ::oRptWnd CENTERED
/*
if Empty( ::oDevice:cFile )
Eval( ::bPreview, ::oDevice )
elseif "pdf" $ Lower( ::oDevice:cFile )
FWSavePreviewToPDF( ::oDevice,;
If( Lower( cFileExt( ::oDevice:cFile ) ) == "pdf", ;
::oDevice:cFile, nil ), ::oDevice:lPreview )
endif
*/
PrintEnd()
Please change these lines as:
- Code: Select all Expand view
ACTIVATE DIALOG ::oRptWnd CENTERED
if Empty( ::oDevice:cFile )
Eval( ::bPreview, ::oDevice )
else
PrintEnd()
endif
Please test after this change and let us know.