Option Explicit
Option Compare Text
Const MyUserName As String = "[B][COLOR=red]ruddles[/COLOR][/B]"
Const MyPassword As String = "[COLOR=red][B]secret[/B][/COLOR]"
Const READYSTATE_COMPLETE As Integer = 4
Dim objIE As Object
Public Sub LoginToYahoo()
Set objIE = CreateObject("InternetExplorer.Application")
With objIE
.Visible = True
.Silent = True
.Navigate ("[URL]https://login.yahoo.com/config/login[/URL]")
Do Until .ReadyState = READYSTATE_COMPLETE
DoEvents
Loop
Application.Wait Now() + TimeValue("00:00:02")
If InStr(objIE.document.body.innerhtml, "Not " & MyUserName & "?") = 0 Then
[B][COLOR=magenta] .document.all.login.Value = MyUserName
[/COLOR][/B] End If
[B][COLOR=magenta] .document.all.passwd.Value = MyPassword
.document.forms(0).submit
[/COLOR][/B] Do Until .ReadyState = READYSTATE_COMPLETE
DoEvents
Loop
Application.Wait Now() + TimeValue("00:00:02")
End With
[COLOR=green] ' objIE.Quit
' Set objIE = Nothing
[/COLOR]
End Sub