Hyperlink Botton

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is it possible / how can you define a control button on a form to work just
like the standard Edit Hyperlink button in the toolbars or by right clicking
on the address ?
 
something like the following should do:

Function EditHyp()
On Error GoTo Error_EditHyp

DoCmd.RunCommand acCmdEditHyperlink
EditHyp = True

Exit_EditHyp:
Exit Function

Error_EditHyp:
MsgBox Err & ": " & Err.Description
EditHyp = False
Resume Exit_EditHyp

End Function

You might also want to take a look at
http://www.cardaconsultants.com/en/samples.html, specifically the Hyperlinks
sample database.

Daniel
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top