Bingen
unread,May 1, 2012, 4:48:36 AM5/1/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to FastReport for [x]Harbour, Alaska Xbase++, Visual FoxPro
When I export directly to HTML without preview
::SetProperty("Report" ,"ShowProgress", .F.)
::SetProperty("HTMLExport" ,"ShowDialog",.F.)
::SetProperty("HTMLExport" ,"OpenAfterExport",.F.)
::SetProperty("HTMLExport" ,"ExportPictures",.T.)
::SetProperty("HTMLExport" ,"ExportStyles",.T.)
::SetProperty("HTMLExport" ,"PicsInSameFolder", .T. )
::SetProperty("HTMLExport" ,"UseGif", .T. )
::SetProperty("HTMLExport" ,"AbsLinks", .T. )
::SetProperty("HTMLExport" ,"FixedWidth", .F. )
::SetProperty("HTMLExport" ,"Filename",cExportFileName)
::DoExport("HTMLExport")
The result is correct but don't export pictures correctly.
If I use
::SetProperty("HTMLExport" ,"UseGif", .T. )
or
::SetProperty("HTMLExport" ,"UseJpeg", .T. )
FR allways create a PNG file called FastReport.img0.png and this is a
empty file, has the correct width and height pixels, but is a blank
area.