Posted 28 March 2019, 8:10 am EST
Dear all,
I have used the following code in VB as suggested in one Topic to create a PDF file from a Flexreport in silent mode:
Dim c1FlexReport1 As New C1FlexReport()
c1FlexReport1.Load(“C:\Test\Shiftreport.flxr”, “Shiftreport”)
c1FlexReport1.Render()
Dim filter As New C1.Win.C1Document.Export.PdfFilter()
filter.ShowOptions = False
filter.FileName = “Shiftreport” + “C:\Temp\Shiftreport.pdf”
c1FlexReport1.RenderToFilter(filter)
Unlikely i get an error saying “The path format is not supported”
Can you please give a running sample for this issue.
Best regards
Said