Hi,
How is it possible to read the content of a pdf form with fivewin .
Is there a dll or activex ?
Thanks for your help.
Hi,
How is it possible to read the content of a pdf form with fivewin .
Is there a dll or activex ?
Thanks for your help.
function main()
  AcroApp:= CreateObject("AcroExch.App")
  theForm:= CreateObject("AcroExch.PDDoc")
  theForm:Open("c:\reports\test.pdf")
  jso:= theForm:GetJSObject
  text1 = jso:getField("fld1"):Value
  text2 = jso:getField("fld2"):Value
  ?text1
  ?text2
return nilThanks for this answer .
Do you have a help file giving more info about this communication .
Is it also possible to write info in a field with fivewin and save this info in the PDF ?
Thanks .
function main()
  AcroApp:= CreateObject("AcroExch.App")
  theForm:= CreateObject("AcroExch.PDDoc")
  theForm:Open("c:\report\test.pdf")
  jso:= theForm:GetJSObject
********** To Read Pdf form Field  ***********************
  text1 = jso:getField("fld1"):Value
  text2 = jso:getField("fld2"):Value
********** To save pdf form field ************************
  jso:getField("fld1"):Value="Value Changed"
  TheForm:save(,"c:\report\test.pdf")
 Â
return nilThanks for this answer,
Do you have a help or pdf file with more info about this ?
Thanks
Jack, you can search this forum for pdftk if you need to fill pdf forms