Re: Saving PDF files in Access
From: Gal Zilberman (gal.zilberman_at_tns-teleseker.com)
Date: 02/13/05
- Next message: Chris Reveille: "Help with Criteria?"
- Previous message: Dave: "Help with Criteria?"
- In reply to: JGarza: "Saving PDF files in Access"
- Next in thread: Douglas J. Steele: "Re: Saving PDF files in Access"
- Reply: Douglas J. Steele: "Re: Saving PDF files in Access"
- Messages sorted by: [ date ] [ thread ]
Date: Sun, 13 Feb 2005 12:39:51 +0200
Why not refer to the PDF's location instead?
Just create a PDF folder, give a unique name to the files, create a text
field with the full path to the file and then you just need to call acrobat
with that file name.
Dim stAppName As String
Dim stFileName As String
stAppName = "C:\Program Files\Adobe\Acrobat 6.0\Reader\AcroRd32.exe"
stFileName = "C:\PDF\123.pdf"
Call Shell(stAppName & " " & stFileName, 1)
Gal
"JGarza" <JGarza@discussions.microsoft.com> wrote in message
news:0074038E-EC4E-4A09-B59B-CBB9231F9230@microsoft.com...
>I am not sure if this is possible, but if it is I would sure like to know.
>Is
> there some way to save a pdf file in access, almost like saving an OLE
> object? We have a lot of PDF reports that come from other companies, and
> they
> have specs and other information that we would like to have in one
> centralized area and be able to pull that information or report back up,
> without having to do a lot of searching. I tried researching the adobe
> active-x control but dont understand it really. Kinda like the Calender
> Control, didn't get that either. =:o)
>
> Thanks!
> --
> Jerry
- Next message: Chris Reveille: "Help with Criteria?"
- Previous message: Dave: "Help with Criteria?"
- In reply to: JGarza: "Saving PDF files in Access"
- Next in thread: Douglas J. Steele: "Re: Saving PDF files in Access"
- Reply: Douglas J. Steele: "Re: Saving PDF files in Access"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|