05/03/21 18:24:38
'Yahooにログイン.vbs
'-------------------
Set ie = CreateObject("InternetExplorer.Application")
ie.visible = True
ie.navigate "URLリンク(www.yahoo.co.jp)"
Do
WScript.Sleep 100
Loop While ie.Busy
With ie.document.forms(0)
.item("login").value = "なまえ"
.item("passwd").value = "ぱすわーど"
.submit
End With