I need all the help i can get on this one, even if someone could point me in the right direction. I want to store a pdf file for every Form i have in my database, it is going to be linked to a button on the form so when clicked this pdf will pull up and be like a "Help" document. I want it to be inside the database instead of linking it to another folder which is what i am doing right now with the Shell command. any help as always is very appreciated. thank you.
Ole
Collapse
X
-
Originally posted by HutchI need all the help i can get on this one, even if someone could point me in the right direction. I want to store a pdf file for every Form i have in my database, it is going to be linked to a button on the form so when clicked this pdf will pull up and be like a "Help" document. I want it to be inside the database instead of linking it to another folder which is what i am doing right now with the Shell command. any help as always is very appreciated. thank you.
Why not convert your pdf's to text and place the appropriate text in popup forms for your adhoc help files?
Regards,
Scott -
Isn't there a way to create a field which is a link to the PDF in question? So instead of storing the file in the database you store it along with the database and then have links to the pertinent references when needed?Comment
-
Originally posted by MarkNeumannIsn't there a way to create a field which is a link to the PDF in question? So instead of storing the file in the database you store it along with the database and then have links to the pertinent references when needed?
Regards,
ScottComment
-
Originally posted by Scott PriceMy suggestion is don't!!! Storing images in Access is always a tricky process, and results in lots of Database BLOAT...
Why not convert your pdf's to text and place the appropriate text in popup forms for your adhoc help files?
Regards,
ScottComment
-
Originally posted by HutchAdhoc? Popup? how would i go about this.
(Ad hoc means improvised or impromptu in this case :-)...
Extract the text from your pdf files and store them in a table somewhere in your db... Call it tblHelp if you like. This will ideally have three fields: HelpID, HelpText, FormID. You will then have to number your forms by placing an invisible unbound text box on the form with a permanent number in it.
Next make a query that pulls each help record with a WHERE criteria that points to the formid, i.e:Code:WHERE tblHelp.FormID = [Forms]![FormX]![TxtFormID]
Feel free to ask any more questions. This is just an idea, mind :-)
Regards,
ScottComment
Comment