Creating a hyperlink button on a form

S

Stacie Fugate

How do you create a hyperlink button on a form so that
when it is clicked, it will open up a file that is stored
on a shared drive?
 
V

Van T. Dinh

There are a number of different ways you can open a file:

1. Use the "Hyperlink Address" Property of the
CommandButton.

2. Use the Shell Method in the CommandButton_Click Event.

Check Access / Access VB Help on the
Property "HyperlinkAddress" and the Shell Method.

HTH
Van T. Dinh
MVP (Access)
 
Top