Results 1 to 7 of 7
  1. #1
    onlylonely is offline Competent Performer
    Windows 7 64bit Access 2013 64bit
    Join Date
    May 2017
    Posts
    110

    Convert Forms to PDF

    Hi All,

    Is there any method to convert forms to PDF?
    I've 5 forms. These 5 forms is link by a unique number.
    At the last page F5, i would like to click and it will convert all the forms to PDF. Is that possible?


    Or i need to convert these 5 forms into the report and then only to PDF?

    Click image for larger version. 

Name:	forms.JPG 
Views:	15 
Size:	12.9 KB 
ID:	41562

  2. #2
    ranman256's Avatar
    ranman256 is offline VIP
    Windows Vista Access 2010 32bit
    Join Date
    Apr 2014
    Location
    Kentucky
    Posts
    9,522
    if you mean a picture of the form in pdf, then you can print the screen, then print to pdf.
    but if you mean convert an access form to a pdf form, then no.

    if you want to print the data, then make a report, then print that to pdf,
    or use : docmd.OutputTo

    docmd.OutputTo acOutputReport ,"rMyRpt", acFormatPDF,vFileName

  3. #3
    onlylonely is offline Competent Performer
    Windows 7 64bit Access 2013 64bit
    Join Date
    May 2017
    Posts
    110
    Quote Originally Posted by ranman256 View Post
    if you mean a picture of the form in pdf, then you can print the screen, then print to pdf.
    but if you mean convert an access form to a pdf form, then no.

    if you want to print the data, then make a report, then print that to pdf,
    or use : docmd.OutputTo

    docmd.OutputTo acOutputReport ,"rMyRpt", acFormatPDF,vFileName
    Hi Ranman,

    Thank You for the suggestion.
    Your suggestion is to put all the data into the report and convert it to PDF.
    I have 5 forms and each individual has it owns table but link with a unique number.
    So i have to create 5 reports. May i know how can i put all the 5 report into 1 report? Meaning that i have 1 report that contains of 5 pages.
    Or can i convert those 5 reports into 1 PDF?

  4. #4
    ranman256's Avatar
    ranman256 is offline VIP
    Windows Vista Access 2010 32bit
    Join Date
    Apr 2014
    Location
    Kentucky
    Posts
    9,522
    if all 5 are different reports, then you can create 1 report holding 5 subReports.
    then they all print in 1` pdf with the OUTPUTto command.

  5. #5
    onlylonely is offline Competent Performer
    Windows 7 64bit Access 2013 64bit
    Join Date
    May 2017
    Posts
    110
    Quote Originally Posted by ranman256 View Post
    if all 5 are different reports, then you can create 1 report holding 5 subReports.
    then they all print in 1` pdf with the OUTPUTto command.
    Hi Ranman,

    I'm trying hard to figure out how to create 1 report holding 5 subreports.
    I've google, youtube but i can't find any. Appreciate if you could provide me more hints on this?

  6. #6
    onlylonely is offline Competent Performer
    Windows 7 64bit Access 2013 64bit
    Join Date
    May 2017
    Posts
    110
    Quote Originally Posted by onlylonely View Post
    Hi Ranman,

    I'm trying hard to figure out how to create 1 report holding 5 subreports.
    I've google, youtube but i can't find any. Appreciate if you could provide me more hints on this?
    HI Ranman,

    Finally i got it.... But i want to export it to PDF.
    When i use Docmd.outputto ..... it will have 52 pages. Cause command outputto cannot put which unique number you want to convert to pdf.
    It will export all the data from the table.

    Code:
    DoCmd.OutputTo acOutputReport, "F1", acFormatPDF, "C:\Tony\Project\MS Access\Good\" & [Forms]![F4EffectivenessForm]![txtscar] & " Record.pdf", False
    Unlike, below code

    Code:
    DoCmd.OpenReport "F1", acViewReport, , "[SCAR] = '" & Forms!F4EffectivenessForm!txtscar & "'", acWindowNormal

    It can viewreport and save to pdf. But how can i directly convert it to pdf?
    Any idea?

  7. #7
    CJ_London is online now VIP
    Windows 10 Access 2010 32bit
    Join Date
    Mar 2015
    Posts
    11,409
    in your mind - what is the difference between 'save to pdf' and 'convert it to pdf'

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Replies: 2
    Last Post: 04-05-2016, 08:29 AM
  2. Replies: 3
    Last Post: 03-23-2016, 12:45 PM
  3. Replies: 5
    Last Post: 03-16-2015, 10:17 PM
  4. Replies: 2
    Last Post: 11-05-2014, 09:16 AM
  5. Replies: 4
    Last Post: 04-01-2009, 08:49 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums