user entered hyperlink

  • Thread starter Thread starter hje
  • Start date Start date
H

hje

In a textbox/memo field, users want to be able to enter
hyperlinks if they want to (to set their own references).

Any suggestions on how I can implement this? The Hyperlink
option under the Insert pull down menu is not active for
users.
 
It should be active, provided the cursor is in a text box bound to a
hyperlink field.

If you are trying to run this with code:
Me.[MyHyperlinkField].SetFocus
RunCommand acCmdInsertHyperlink
 
Access does not natively support rich text within a control.

--
Allen Browne - Microsoft MVP. Perth, Western Australia.


hje said:
hmmm -- well actually they want to enter hyperlinks in
text boxes that aren't only for hyperlinks. For example,
they are describing a book, and they type in "refer to
reference A", they want to make "reference A" a
hyperlink. So, the hyperlink will be embedded among
normal text.

Can this be done?
-----Original Message-----
It should be active, provided the cursor is in a text box bound to a
hyperlink field.

If you are trying to run this with code:
Me.[MyHyperlinkField].SetFocus
RunCommand acCmdInsertHyperlink

--
Allen Browne - Microsoft MVP. Perth, Western Australia.


hje said:
In a textbox/memo field, users want to be able to enter
hyperlinks if they want to (to set their own references).

Any suggestions on how I can implement this? The Hyperlink
option under the Insert pull down menu is not active for
users.


.
 
Back
Top