Application.WebOpenHyperlink method (Project)
Opens the document specified by a hyperlink address.
Syntax
expression. WebOpenHyperlink
( _Address_
, _SubAddress_
, _AddHistory_
, _NewWindow_
)
expression A variable that represents an Application object.
Parameters
Name | Required/Optional | Data type | Description |
---|---|---|---|
Address | Optional | String | The address of the target document. If Address is omitted, the text of the selected field is used. |
SubAddress | Optional | String | A location within the target document. |
AddHistory | Optional | Boolean | True if the target document is added to the History folder. The default value is True. |
NewWindow | Optional | Boolean | True if the target document displays in a new window. The default value is False. |
Return value
Boolean
Remarks
The WebOpenHyperlink method is only available when the selected assignment, resource, or task field contains a hyperlink.
Example
The following example inserts a hyperlink in the Gantt Chart and then opens it.
Sub WebOpen_Hyperlink()
'Activate Gantt Chart
ViewApply Name:="&Gantt Chart"
SelectRow Row:=2, RowRelative:=False
InsertHyperlink Name:="https://MSDN/", Address:="https://msdn.microsoft.com/", SubAddress:="", ScreenTip:=""
'Open the webpage
WebOpenHyperlink Address:="https://msdn.microsoft.com/", SubAddress:=""
End Sub
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.