Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagevb
titlePre-VFP 9.0 mode
linenumberstrue
loSession= xfrx("XFRX#INIT")
lnRetVal = loSession.SetParams("output.docx",,,,,,"NATIVE_FDOCX")
IfIF lnRetVal = 0
    loSession.ProcessReport("report1")
    loSession.finalize()
EndifENDIF
Code Block
languagevb
titleVFP 9.0 mode
linenumberstrue
loxfrx = XFRX("XFRX#LISTENER")
lnRetval = loxfrx.SetParams("output.docx",,,,,,"NATIVE_FDOCX")
IF lnRetval = 0
    REPORT FORM report1 OBJECT loxfrx
endif
ENDIF

Bugs fixed

  • XFRX diagnosis module does not require FOXTOOLS.FLL in compile time any more
  • XML output type now includes the code page defined in SetParams
  • Pictures rotation is now supported DOCX output. We will be adding this to other output types (where doable)
  • FIXED: Open office output type does not include the correct code page in listener mode
  • FIXED: Report previewer: unpaired Lockscreen = .T. / .F.