Date:  07/11/2019 03:36:17 PM Msg ID:  004990
From:  Martin Martin Thread:  004990
Subject:  progression bar for long report
 
Hi,
 
I try to show a progression bar for a report taking long time.
 
At the end of my script, I send the pdf as a response to the user like this :
 
M.TempFile = fwPDF.GetTempFile()
Report Form MyReports.frx Nowait Noconsole To File (M.TempFile)
M.PDFFile = "c:\temp\" + Forceext(Justfname(M.TempFile), 'pdf')
fwPDF.PS2PDF(M.TempFile, M.PDFFile, .T.)
fwPDF.SendPDF(M.PDFFile, , .T., .F., .F.) 
 
Is there a way to show progression and at the end send the pdf ?
 
Thanks