Edit Hyperlink command problems

E

Emma Parker

I am trying to create a button, using a macro, that brings
up the edit hyperlink menu - but I get the following
message:

'The command or action 'EditHyperlink' isn't available in
acces right now'.

I'm trying to create a field that allows users to simply
browse the network to locate documents and then have the
hyperlink following this path. They are incapable of
typing the path in themselves, so they need this option.

Please help.
 
A

Allen Browne

Is it possible that the command button still has focus when your code runs?

Me.[MyField].SetFocus
RunCommand acCmdEditHyperlink
 
Top