I thought it should be something simple like change InternetExplorer to Chrome or GoogleChrome, but that doesn't seem to work. Any ideas? I am not an expert.


Const cURL = "https://yahoo.com"
   
        
    Dim IE As InternetExplorer
    Dim doc As HTMLDocument
    Dim LoginForm As HTMLFormElement
    Dim UserNameInputBox As HTMLInputElement
    Dim PasswordInputBox As HTMLInputElement
    Dim ClientNameInputBox As HTMLInputElement
    Dim HTMLelement As IHTMLElement
    Dim PID
    
    Set IE = New InternetExplorer
    
    IE.Visible = True
    IE.navigate cURL


Thanks a bunch!