I have a label control on an Access form. On the Load Event for this form, I add a HyperlinkAddress to the label control which creates a link to the specific word document. I do this using the code:
where sDocFile is the full name of the document (includes path and extension). This works fine.
I would like to be able to open the document at a specific location using a document bookmark or page number or other reference points if possible. Appreciate the help.
Code:
Me.lblHyperlink_AllocRules.HyperlinkAddress = sDocFile
where sDocFile is the full name of the document (includes path and extension). This works fine.
I would like to be able to open the document at a specific location using a document bookmark or page number or other reference points if possible. Appreciate the help.