If I used the new Report futures from VFP 9 SP2 (Rotate Object) with:
REPORT FORM OBJECT TYPE 0
The report output show the labels rotatation correctly.
But, if I create an object like
loReportListener=CREATEOBJECT("ReportListener")
loReportListener.ALLOWMODALMESSAGES=.T.
loReportListener.DYNAMICLINEHEIGHT = .T.
loReportListener.LISTENERTYPE=0
loReportListener.PRINTJOBNAME="Print Job"
loReportListener.QUIETMODE=.F.
REPORT FORM OBJECT loReportListener
The output will come without the object rotate.
What is missing?
FPO