Welcome to the { mindfrost82.com } forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

Go Back   { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Microsoft > MS Office > Access

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 09-09-2008, 02:00 AM
Ron
 
Posts: n/a
PDF file as pre-printed form to fill out within Access

Hi All,

I have a client that has downloaded a PDF file that has blanks where
needed. A clerk types the stuff into the blanks on the provided form,
then prints it out to a printer. Then, they initialize the form and
fill in the blanks for another customer. This form is the only form
that can be used for this purpose (State of California website
supplies it and it's got barcodes and other such stuff that needs to
be there).

After filling in the appropriate blanks and printing it, it's put into
an envelope and ::shudder:: mailed to the office of the state that
requires it. They don't take it electronically, only via snail mail.
And no other form can be used (so, I can't reinvent it within Access
reports or Word merge, etc).

Am I clear?

Okay, if we're on the same page, now my question. Is there a way I
can get Access to fill in the blanks on this specific PDF form instead
of a person having to manually sit there and do it for each of their
customers? Kinda like a merge of data fields and a word template
possibly?

Anyone know anything about doing this type of thing? Would I be more
apt to get answers from a PDF newsgroup?

TIA,
ron
Reply With Quote
  #2 (permalink)  
Old 09-09-2008, 02:45 AM
Arvin Meyer [MVP]
 
Posts: n/a
Re: PDF file as pre-printed form to fill out within Access

Yes you can merge the data into Word. You can also duplicate the PDF form as
an Access Report. Lastly, you can scan the PDF form and save it as a bitmap,
then create an Access form with Access textboxes overlaying the PDF fields.
Then save this as a report, deleting the bitmap so that all the textboxes no
have correct placement. Then just print the report on your existing PDF
form.
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com


"Ron" <ronwest777@gmail.com> wrote in message
news:b07bff34-4a19-47c9-9ef4-271000ff0269@a18g2000pra.googlegroups.com...
> Hi All,
>
> I have a client that has downloaded a PDF file that has blanks where
> needed. A clerk types the stuff into the blanks on the provided form,
> then prints it out to a printer. Then, they initialize the form and
> fill in the blanks for another customer. This form is the only form
> that can be used for this purpose (State of California website
> supplies it and it's got barcodes and other such stuff that needs to
> be there).
>
> After filling in the appropriate blanks and printing it, it's put into
> an envelope and ::shudder:: mailed to the office of the state that
> requires it. They don't take it electronically, only via snail mail.
> And no other form can be used (so, I can't reinvent it within Access
> reports or Word merge, etc).
>
> Am I clear?
>
> Okay, if we're on the same page, now my question. Is there a way I
> can get Access to fill in the blanks on this specific PDF form instead
> of a person having to manually sit there and do it for each of their
> customers? Kinda like a merge of data fields and a word template
> possibly?
>
> Anyone know anything about doing this type of thing? Would I be more
> apt to get answers from a PDF newsgroup?
>
> TIA,
> ron



Reply With Quote
  #3 (permalink)  
Old 09-09-2008, 07:25 AM
Tony Toews [MVP]
 
Posts: n/a
Re: PDF file as pre-printed form to fill out within Access

Ron <ronwest777@gmail.com> wrote:

>Am I clear?


Yup.

>Okay, if we're on the same page, now my question. Is there a way I
>can get Access to fill in the blanks on this specific PDF form instead
>of a person having to manually sit there and do it for each of their
>customers? Kinda like a merge of data fields and a word template
>possibly?
>
>Anyone know anything about doing this type of thing? Would I be more
>apt to get answers from a PDF newsgroup?


Quite possibly. I suspect you could programmatically hit the PDF
file, fill in the blanks and print it from Access. However that is
out of the scope of this newsgroup. Unless someone knows the answer
and responds.

I'd suggest poking about at the
http://www.adobe.com/products/acrobatstd/ website and look for the
developer side of things. Ah, here we go. Try at
http://www.adobe.com/devnet/acrobat/ or even
http://www.adobe.com/devnet/acrobat/...plication.html

(Use OLE and avoid DDE if at all possible. DDE is Win 3.1
technology.)

There may also be other non Adobe, and thus cheaper, products that
have the same functionality. But start with the above links to
figure out the Adobe terminology first.

Then you'll have an idea of what keywords to use to search for other
products. If any. What you're looking for is relatively high end
compared to the standard "tell app to send printing to PDF file and
save under a specific file name."

Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm
Tony's Microsoft Access Blog - http://msmvps.com/blogs/access/
Reply With Quote
  #4 (permalink)  
Old 09-09-2008, 04:37 PM
Steve
 
Posts: n/a
Re: PDF file as pre-printed form to fill out within Access

http://www.colorpilot.com/pdfmaker.html

This company produces a package that allows you to make a PDF form and have
the data directly entered from a DB.


CutePDF Writer. It is free and no advertising or popups.

http://www.cutepdf.com/Products/CutePDF/writer.asp



Microsoft Office 2007 Addin To Save as PDF

http://www.microsoft.com:80/download...displaylang=en



FinePrint's PDFFactory can be printed to prgammatially from Access. Not really via automation,
but you can use VBA to set registry values to provide filenames/locations and print 'silently'
without user intervention. Works very well.
www.fineprint.com



Steve




"Ron" <ronwest777@gmail.com> wrote in message news:b07bff34-4a19-47c9-9ef4-271000ff0269@a18g2000pra.googlegroups.com...
> Hi All,
>
> I have a client that has downloaded a PDF file that has blanks where
> needed. A clerk types the stuff into the blanks on the provided form,
> then prints it out to a printer. Then, they initialize the form and
> fill in the blanks for another customer. This form is the only form
> that can be used for this purpose (State of California website
> supplies it and it's got barcodes and other such stuff that needs to
> be there).
>
> After filling in the appropriate blanks and printing it, it's put into
> an envelope and ::shudder:: mailed to the office of the state that
> requires it. They don't take it electronically, only via snail mail.
> And no other form can be used (so, I can't reinvent it within Access
> reports or Word merge, etc).
>
> Am I clear?
>
> Okay, if we're on the same page, now my question. Is there a way I
> can get Access to fill in the blanks on this specific PDF form instead
> of a person having to manually sit there and do it for each of their
> customers? Kinda like a merge of data fields and a word template
> possibly?
>
> Anyone know anything about doing this type of thing? Would I be more
> apt to get answers from a PDF newsgroup?
>
> TIA,
> ron

Reply With Quote
  #5 (permalink)  
Old 09-12-2008, 02:24 PM
Arvin Meyer [MVP]
 
Posts: n/a
Re: PDF file as pre-printed form to fill out within Access


"Steve" <nonsense@nomsense.com> wrote in message
news:PKidnSHIZc2mBVvVnZ2dnUVZ_gydnZ2d@earthlink.co m...

> CutePDF Writer. It is free and no advertising or popups.


> http://www.cutepdf.com/Products/CutePDF/writer.asp


The version that allows creating forms is inexpensive, but not free. Any
Access report can be printed as a PDF though by using the free version (or
any other PDF maker). That said, the code to do it programmatically is as
simple as:

Private Sub cmdPrintReport_Click()

Set Application.Printer = Application.Printers("CutePDF")

DoCmd.OpenReport "rptReportName"

Set Application.Printer = Application.Printers("HP LaserJet 4")

End Sub
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com


Reply With Quote
Reply

  { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Microsoft > MS Office > Access


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 04:47 PM.


Powered by vBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0 ©2007, Crawlability, Inc.
© 1999-2008 mindfrost82.com v11.0


Sponsors:
Nora Roberts | Advertising | eHarmony | Mobile Phone | Mortgages



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114