內(nèi)嵌式網(wǎng)頁窗口中自動填表+取驗證碼例子(VB6.0代碼)
當(dāng)前位置:點晴教程→知識管理交流
→『 技術(shù)文檔交流 』
用此代碼回復(fù)CSDN的這個帖子: http://topic.csdn.net/u/20091125/18/350b4c51-7300-4850-9388-8b8e709dd712.html
那個投票窗口有兩個麻煩,分別是: 一,登錄窗口與驗證碼都在內(nèi)嵌的一個新窗口中; 二,驗證碼加載后會自動刷新一次. 我只搞定了第一個,第二個的理想做法是得到那個Document對象的事件,在事件里處理. 困了就懶得搞了,干脆延個時,嘿嘿. 代碼如下: 復(fù)制內(nèi)容到剪貼板 程序代碼 Option Explicit '取驗證碼+自動填表例子 ' '窗體上添加一個WebBrowser1,Picture1,Timer1 ' 'BY 嗷嗷叫的老馬 '"http://www.m5home.com Dim oHTML As Object Private Sub Form_Load() Timer1.Enabled = False WebBrowser1.Navigate "http://www.aocdisplay.com.cn/activity/detail.asp?id=39268" End Sub Private Sub WebBrowser1_DocumentComplete(ByVal pDisp As Object, URL As Variant) If URL = "http://www.aocdisplay.com.cn/activity/vote.asp?id=39268&sid=a744f808e9c4759586da57f92bfeacbd&" Then Set oHTML = pDisp Timer1.Interval = 1000 '等小窗口驗證碼刷新后再提取 Timer1.Enabled = True End If End Sub Private Sub Timer1_Timer() Timer1.Enabled = False Dim oTmp As Object, CR As Object Set oTmp = oHTML.Document.getElementById("Uid") '用戶名 oTmp.Value = "asdfasdf" Set oTmp = oHTML.Document.getElementById("Pwd") '密碼 oTmp.Value = "asdfasdf" Set oTmp = oHTML.Document.getElementById("Vcd") '驗證碼 oTmp.Value = "asdfasdf" Set oTmp = oHTML.Document.getElementById("validatorImage") '得到驗證碼 Set CR = oHTML.Document.body.createControlRange() '設(shè)置選區(qū) CR.Add oTmp '添加驗證碼圖片對象到選區(qū) CR.execCommand ("Copy") '復(fù)制 Set Picture1.Picture = Clipboard.GetData() '粘貼過去 End Sub 該文章在 2013/12/11 14:56:17 編輯過 |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |