1,453
社区成员
发帖
与我相关
我的任务
分享Private Sub Form_Load()
WebBrowser1.Navigate "ss.htm"
End Sub
Private Sub WebBrowser1_DocumentComplete(ByVal pDisp As Object, URL As Variant)
If URL = "ss.htm" Then
WebBrowser1.Document.parentWindow.frames("myframe").Document.All("Ipt1").Value = "1234"
WebBrowser1.Document.parentWindow.frames("myframe").Document.All("submit1").Click
End If
End Sub