I am using VB.NET to export to PDF. The PDF exporting function is inside a loop.
The program hanged in the bold statement as below when it generated 16374 pdf softcopy (ie doing the 16375).
Using ObjRpt As New MyReport
With ObjRpt
.SetDataSource(Me.dsData)
.ExportToDisk(CrystalDecisions.Shared.ExportFormatType.PortableDocFormat, Me.OutputPath)
End With
End Using