A
Alex St-Pierre
Hi !
I can open a pdf file in VBA using the following code. Is there a way to
copy a text in a specific box inside the .pdf (the pdf file has boxes that
need to be completed). I don't need to save the pdf file (just open it and
complete it)
Is there a Adobe library that can be used to select box#1, #2, etc.
Thank's a lot!
Alex
Dim myIE As Object
Set myIE = CreateObject("InternetExplorer.Application")
myURL = "C:\myPdfFile.pdf"
On Error Resume Next
myIE.navigate myURL
myIE.Visible = True
On Error GoTo 0
I can open a pdf file in VBA using the following code. Is there a way to
copy a text in a specific box inside the .pdf (the pdf file has boxes that
need to be completed). I don't need to save the pdf file (just open it and
complete it)
Is there a Adobe library that can be used to select box#1, #2, etc.
Thank's a lot!
Alex
Dim myIE As Object
Set myIE = CreateObject("InternetExplorer.Application")
myURL = "C:\myPdfFile.pdf"
On Error Resume Next
myIE.navigate myURL
myIE.Visible = True
On Error GoTo 0