expression.Navigate1( _ ByVal Url As String _ )
where expression is a variable that represents a WebControl Object
Parameters
- Url
expression.Navigate1( _ ByVal Url As String _ )
'This example navigates to a Web page and then opens another Web session on a new tab. Sub navigateToWeblinks() 'Change the URL for this Web page to go to the Documentation page ThisWebControl.Navigate1 "https://www.microfocus.com/documentation/reflection-desktop/" 'open the Reflection videos page in a new tab ThisWebControl.Navigate2 "https://www.microfocus.com/documentation/reflection-desktop/latest/videos/user-intro.html", True End Sub