hao268网站,风格清新,无任何广告,实在是良心之作。其首页中的邮箱账户,可以方便的直达各个常用邮箱。本程序利用VBA,实现139邮箱的自动登录。
'@139.com是第11个元素
Sub 邮箱登录()
On Error Resume Next
Set ie = CreateObject("internetexplorer.application")
ie.Visible = True
ie.Navigate "https://www.hao268.com"
Do Until ie.ReadyState = 4
DoEvents
Loop
With ie.Document
.getelementbyid("hao_mail_username").Value = "yourname"
.getelementbyid("hao_mail_options")(11).Selected = True'选中@139.com
.getelementbyid("hao_mail_passwd").Value = "yourpassword"
.getElementById("emailsubmit").Click
End With
End Sub
下一篇:汇编基础题目学习--1