where expression is a variable that represents a WebControl Object
Parameters
- Url
- newWindow
- Determines if the new page is in a new window.
'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 Reflection 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