In order to print richtext which I have saved on .fpt files, I find that I must create the control on a dialog or window. When I only wish to print without displaying the richtext control I hide the dialog:
Code: Select all
*-------------------------------------------------------------------------------------------------------------------------------
METHOD DisplayHidden() CLASS Transcription
local oSelf := self, i
::oActive := ::oTrGrss
for i:=1 to len( ::aRtfs )
::aRtfs[ i ]:hide()
next i
ACTIVATE DIALOG oSelf:oDlg CENTERED NOWAIT
::oDlg:Hide()
return nil
Any ideas on how to solve this one?
Thank you,
Reinaldo.