View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Alex St-Pierre Alex St-Pierre is offline
external usenet poster
 
Posts: 169
Default Complete .PDF form in VBA

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
--
Alex St-Pierre