VB打开网页并自动提交表单问题。 10

'*****连接网站自定义函数*********PublicFunctionDCUrl(strUrlAsString,strUserAsString,strPasswor... '*****连接网站自定义函数*********
Public Function DCUrl(strUrl As String, strUser As String, strPassword As String) As Boolean

Dim IE As Object, timeie As Date
Dim READYSTATE_COMPLETE As Boolean

'frmDC.Show

On Error Resume Next
Set IE = CreateObject("InternetExplorer.application")
IE.Visible = True
'连接网站时,窗口最小化
ShowWindow IE.hwnd, 3
'IE.vbMaximizedFocus
'IE.FullScreen = True
'IE.SetFocus = True
WindowState = vbMinimized
frmDC.Visible = False
IE.Navigate strUrl
timeie = DateAdd("s", 60, Now()) '最久等待60秒
Do While IE.Busy And Not IE.ReadyState = READYSTATE_COMPLETE

DoEvents
If timeie < Now() Then
MsgBox "无法连接网站,请重新执行"
IE.Quit
Exit Function
End If
Loop
IE.Document.All.UserName.Value = strUser
IE.Document.All.Password.Value = strPassword
IE.Document.All.Submit0.Click

End Function

主窗体中有text1和text2,command1控件。
strUser=text1.text
strPassword=text2.text
点击command1时调用
DCUrl函数,打开网页并输入用户名和密码,并提交网页表单。

存在问题:当不是使用IE作为默认浏览器时,出现无法执行的情况。现在我使用的是搜狗浏览器。
展开
 我来答
chenxfsoft
2011-01-29 · TA获得超过1380个赞
知道大有可为答主
回答量:2418
采纳率:0%
帮助的人:1842万
展开全部
VB么,用webbrowser,你也不用去做等待,webbrowser.documentcomplete事件里写即可。省事吧。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式