I am trying to use the HTML report listener within one of my forms. It works great except it keeps displaying listener messages. Any idea how to get rid of those? I thought using quietmode = .T. would work. No such luck.
Here is my code:
cfile = ALLTRIM(mfiled)+"\"+ALLTRIM(hrpt) +'-'+dtos(DATE())+ ".HTML"
ox = .NULL.
do (_reportoutput) with 5, ox
ox.TargetFileName = cfile
ox.QuietMode = .T.
ox.ListenerType = 5
REPORT FORM (hrpt) OBJECT ox
When the Report form command runs, it generated my html file perfectly but also displays the following messages on my form.
.T.
.NULL.
GFXNORENDER
LISTENER.VCX
LISTENER.VCX
LISTENER.VCX
End of Locate scope.
.F.
.T.
.T.
.NULL.
I have searched the internet and VFP help files and can't find anything on this topic. Anybody know how to suppress these messages?
Thanks for the help.
Here is my code:
cfile = ALLTRIM(mfiled)+"\"+ALLTRIM(hrpt) +'-'+dtos(DATE())+ ".HTML"
ox = .NULL.
do (_reportoutput) with 5, ox
ox.TargetFileName = cfile
ox.QuietMode = .T.
ox.ListenerType = 5
REPORT FORM (hrpt) OBJECT ox
When the Report form command runs, it generated my html file perfectly but also displays the following messages on my form.
.T.
.NULL.
GFXNORENDER
LISTENER.VCX
LISTENER.VCX
LISTENER.VCX
End of Locate scope.
.F.
.T.
.T.
.NULL.
I have searched the internet and VFP help files and can't find anything on this topic. Anybody know how to suppress these messages?
Thanks for the help.