Handyman supports a special document type called "Circuit List".
The format inside the document is structured XML data, but the end user needs to get access to the formatted report.
When querying the order for a list of documents, Circuit List documensts have the filexetension epx.
To be able to get the formatted report (PDF file) for this document type, the following must be done:
Automatic=False and PrintViaPDF=True
Function definition:
Public Function URL_CircuitList(lDocumentID As Long) As String
Sample code:
moReport.Automatic = False
moReport.PrintViaPDF = True
msURL = moReport.URL_CircuitList(txtDocumentId.Text)