Z
Zachariah
I got a little button that's supposed to get me a pdf.
Here's the Click() code:
Private Sub GetPDF_Click()
Dim App As Acrobat.CAcroApp
Dim PDDoc As Acrobat.CAcroPDDoc
Dim stPdfFile As String
Set stPdfFile = "C:\testcase.pdf"
Set App = CreateObject("AcroExch.App")
Set PDDoc = CreateObject("AcroExch.PDDoc")
PDDoc.Open (stPdfFile)
End Sub
Problem is it complie errors (User-defined Type Not
Defined). Anybody ever work with the Acrobat OLE
Automation Object who can help me out?
Here's the Click() code:
Private Sub GetPDF_Click()
Dim App As Acrobat.CAcroApp
Dim PDDoc As Acrobat.CAcroPDDoc
Dim stPdfFile As String
Set stPdfFile = "C:\testcase.pdf"
Set App = CreateObject("AcroExch.App")
Set PDDoc = CreateObject("AcroExch.PDDoc")
PDDoc.Open (stPdfFile)
End Sub
Problem is it complie errors (User-defined Type Not
Defined). Anybody ever work with the Acrobat OLE
Automation Object who can help me out?