Argument | Description |
object | The Application object, or a Control object that contains a hyperlink. Label, command button, and image controls can contain hyperlinks. |
hyperlink | The hyperlink of the Control object. |
Private Sub Form_Load()
Me!Command0.HyperlinkAddress = "http://www.microsoft.com/"
End Sub
Private Sub Command0_Click()
Me!Command0.Hyperlink.AddToFavorites
End Sub