楼主的贴子非常好,正在学习中。。。。 请问: (1)pDisp.LocationURL 是什么意思? (2)If pDisp.LocationURL = "http://www.htky365.com/express.asp" 是什么意思? (3)我的以下代码【1-4】处为何报错?如何才能实现登录?以163邮箱为例。 Private Sub WebBrowser1_StatusTextChange(ByVal Text As String) '页面调用完毕 If WebBrowser1.ReadyState <> READYSTATE_COMPLETE Then Exit Sub 【1】 If pDisp.LocationURL = "http://pri.cxfuwu.com/CorpList.aspx" Then 登录网站 End If End Sub Sub 登录网站() Dim I As Single Dim UserName, UserPass As String Dim Doc As Object '获得浏览器的文档对象 Set Doc = WebBrowser1.Document UserName = "yt" UserPass = "" '填写登录信息 点击登录按钮 【2】 Doc.body.All("UserPanel1:txtUid").Value = UserName 【3】 Doc.body.All("UserPanel1:txtPwd").Value = UserPass 【4】 Doc.body.All("UserPanel1:btnLogon").Click End Sub
[此贴子已经被作者于2008-2-16 18:32:47编辑过] |