InfoConnect VBA Guide
Attachmate.Reflection.Objects.Web.Msie Library / WebControl Object / GoSearch Method
Example
In This Topic
    GoSearch Method
    In This Topic
    Goes to the search page.
    Syntax
    expression.GoSearch() 
    where expression is a variable that represents a WebControl Object
    Example
    'This sample shows how to go to the default search page
    Sub navigateMethods()
        
        'Go to the default Web search page
        ThisWebControl.GoSearch
     
    End Sub
    See Also