Previous | Next | (P-PDF) Forms & FDF
Topic: Streaming FDF to IE
Conf: (P-PDF) Forms & FDF, Msg: 86739
From: Sarmad
Date: 4/28/2003 06:00 PM
You don't need to convert it to pdf first. try this:
Sub CreatePDF(Template, Fields)
' Declaring variables
Dim FdfAcX, outputFDF, iCounter
' Initiating COM object, then creating a new document.
Set FdfAcX = Server.CreateObject("FdfApp.FdfApp")
Set outputFDF = FdfAcX.FDFCreate
' Setting a Template for the new document.
outputFDF.FDFSetFile Template
' Using the Array passed to set the controls for the FDF/PDF.
For iCounter = 0 To UBound(Fields, 1)
' The setting process.
If (Fields(iCounter, 0) <> "") Then
outputFDF.FDFSetValue Fields(iCounter, 0), Fields(iCounter, 1), False
End if
Next
Response.ContentType = "application/vnd.fdf"
Response.BinaryWrite outputFDF.FDFSaveToBuf
' Closing object and releasing memory.
outputFDF.FDFClose
Set outputFDF = Nothing
Set FdfAcX = Nothing
End Sub
Sarmad Aljazrawi