in response to:
I have a field in a table that stores the full file path to a .pdf document. I am searching for a way to use that file path to open acrobat reader and display the pdf document refered to in the file path. I can use the Shell command to open Acrobat Reader, but it won't allow me to pass a specific file. Does anyone have any advice on this? Sure would appreciate any assistance. Thanks.
'/////////////////////////////////////////////////////
try creating a command button or, better yet, a label and assigning the path and filename of the .pdf document (as can be seen in it's properties when you right-click on the file in windows explorer) to the hyperlink address of this new button or label.
the caption can be "Open" or "View" or any other string that suits your fancy and makes the control's purpose plain to the user.
the hyperlink address itself can be manipulated by your vba code at run time if neccessary, as it would be if you pick the document's decription off of a list of many documents and then need to press a button to open it, or it can be static if, like a help document, the button would only ever be used to access one .pdf file.
acrobat reader would, by the way, open on it's own when the user follows the link to the file, so there is no need to open it separately.