Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Storing PDF files

Status
Not open for further replies.

hcts

Programmer
Jan 14, 2004
89
US
We have a project where the client wants to keep all documents electronically stored in PDF files. They then want to retreive the document on demand. Has anyone setup a system to keep pdf's in pdox? Any suggestions.

James D. Howard
 
Store the files on disk somewhere, and store the path to the pdfs in Paradox.

With shellexecute() (shellexecuteA()), you can autolaunch Acrobat (reader) to view a pdf based on the path in the Paradox table.


Tony McGuire
"It's not about having enough time. It's about priorities.
 
Sorry I didn't see this post earlier.

You can also use startWebBrowser(filename.pdf)

I have several applications where I store pdf files associated with particular records in a database such as shipping documents associated with a particular customer.

I store the pdf files in a directory and use the customers account number in the file name followed by the file description. I then use the file system with enumFileList to create a popUpMenu with a list of associated documents. My users can then quickly and easily access any pdf documents associated with a customer.

If this would be useful for you I can post the code, it's fairly simple.

Perrin
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top