T
Tec92407
Hi
I have the following sub procedure in my database:
===============================
Dim blRet As Boolean
Dim strPath As String
Dim strFName As String
Dim strPRNo As String
Dim strPDFout As String
strPRNo = Me.PRREQNo
strPath = "g:\IT\PurchaseRequests\pdf"
strFName = "pr" & strPRNo
strPDFout = strPath & "\" & strFName
blRet = ConvertReportToPDF("PRRequisition Report", vbNullString, strPDFout &
".pdf", False, True, 0, "", "", 0, 0)
==================================
It works great, except I only want to convert a specific record instead of
all the records in the reports table.
How do I specify a single record for PDF conversion?
I have the following sub procedure in my database:
===============================
Dim blRet As Boolean
Dim strPath As String
Dim strFName As String
Dim strPRNo As String
Dim strPDFout As String
strPRNo = Me.PRREQNo
strPath = "g:\IT\PurchaseRequests\pdf"
strFName = "pr" & strPRNo
strPDFout = strPath & "\" & strFName
blRet = ConvertReportToPDF("PRRequisition Report", vbNullString, strPDFout &
".pdf", False, True, 0, "", "", 0, 0)
==================================
It works great, except I only want to convert a specific record instead of
all the records in the reports table.
How do I specify a single record for PDF conversion?