Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
PDF and filling fields
Message
De
21/12/2000 12:00:52
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Produits tierce partie
Divers
Thread ID:
00455938
Message ID:
00455949
Vues:
26
>Has any one had any experience or code to fill in fields on an existing pdf form.
>
>With VFP preferably, but any code ?

Here is how you can add a pushbutton to an existing file. Same with text fields.
You will need a full version of Acrobat or Acrobat business tools.

AcroExchAVDoc = CreateObject("AcroExch.AVDoc")
AcroExchAVDoc.Open("C:\FormsOLE.pdf", "")
AFormAut = CreateObject("AFormAut.App")
Fields = AFormAut.Fields
Field = Fields.Add("Submit Button", "button", 0, 100, 50, 150, 100)
Field.BorderStyle = "beveled"
Field.Highlight = "push"
AcroExchPDDoc = AcroExchAVDoc.GetPDDoc
AcroExchPDDoc.Save(1, "C:\FormsOLE.pdf")

Mark
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform