Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3947680
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T01:16:50+00:00 2026-05-20T01:16:50+00:00

Is there a way I can send data to my PDF file, (fill in

  • 0

Is there a way I can send data to my PDF file, (fill in the fields/blanks), either manually or by a third party component, the PDF files have certain fields that can be modified by user, entering numbers.. checkboxes etc etc

how can I achieve this goal, an if it will require some third party component, which is the best, and what are the prices?

our Development IDE is delphi 2010 / Delphi 2011 XE

thanks 🙂

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T01:16:51+00:00Added an answer on May 20, 2026 at 1:16 am

    I guess you want your application to create some PDF content from User Interface field.

    You can do this easily from code, using a report generator from code, then a PDF engine.

    We propose an Open Source solution just for doing this, from Delphi 6 up to XE.

    Here is a code extract from one demo, which create a reports, using some User Interface fields as source (e.g. edt1.Text or mmo1.Text):

    procedure TForm1.btn1Click(Sender: TObject);
      (...)
        with TGDIPages.Create(self) do
        try
          // the name of the report is taken from main Window's caption
          Caption := self.Caption;
          // now we add some content to the report
          BeginDoc;
          (...)
          // main content (automaticaly split on next pages)
          NewHalfLine;
          TextAlign := taJustified;
          s := 'This is some big text which must be justified on multiple lines. ';
          DrawText(s+s+s+s);
          NewLine;
          TextAlign := taLeft;
          DrawTitle(edt1.Text,true);
          for i := 1 to 10 do
            DrawText('This is some text '+IntToStr(i));
          NewLine;
          DrawBMP(Bmp,maxInt,50,'Some bitmap in the report');
          AddBookMark('bookmarkname');
          WordWrapLeftCols := true;
          AddColumns([10,20,50]);
          AddColumnHeaders(['#','Two','Three'],true,true);
          for i := 1 to 100 do
            DrawTextAcrossCols([IntToStr(i),'Column '+IntToStr(i),'Some text here. '+s]);
          NewLine;
          DrawBMP(Bmp,maxInt,50,'Some bitmap in the report (twice)');
          DrawTitle('This is your text',false,0,'','bookmarkname');
          DrawText(mmo1.Text);
          EndDoc;
          // set optional PDF export options
          // ExportPDFForceJPEGCompression := 80;
          // ExportPDFEmbeddedTTF := true;
          // ExportPDFUseUniscribe := true;
          // ExportPDFA1 := true;
          // show a preview form, and allow basic actions via the right click menu
          // ShowPreviewForm;
          // export as PDF
          ExportPDF('test.pdf',false);
        finally
          Free;
        end;
    

    There are other solutions around, but this one is Open Source, and you can even draw whatever you want to the report (using a “standard” TCanvas property – you can even directly any graphical component using the PaintTo method), not only dedicated report generated methods like DrawTitle() or DrawText().

    EDIT:

    If your question was about creating PDF files with forms, this library won’t work.

    You should use some closed-source libraries like VeryPdf or QuickPdf. Google is your friend.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a way how can I send data to RabbitMQ from $.ajax? My
Is there some way I can send data from an Android device to a
Is there some way that an Android app written in Air can send data
I can send data via a button in a pdf file just fine and
Is there any way I can send an email, like any frameworks or something.
I'm wondering if there is a way I can send a NULL or DBNull.Value
Is there a way to have a custom control send events that can be
Is there way that I can read the file from remote server using fopen
Is there a way I can tell whether stderr is outputting to a file
I have an working Excel file, with file I can send data extracted from

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.