如何把TEXT3.TEXT的内容提交到百度作为搜索用的关键字呀?
引用刚刚学会,如何提交表单,将TEXT3.TEXT放入到百度的搜索框去,当做关键字来搜索,这点找了好多地方,也不太明白,求大侠相助!Private Sub Form_Load()
WebBrowser1.Navigate "www.baidu.com"
End Sub
Private Sub Command1_Click()
Dim a, b, c As String
w1 = "c:\1.txt": w2 = "c:\2.txt": w3 = "c:\3.txt"
Open w1 For Input As #1
While Not EOF(1)
Line Input #1, a
Text1.Text = a
Wend
Close #1
Open w2 For Input As #2
While Not EOF(2)
Line Input #2, b
Text2.Text = StrReverse(b)
Wend
Close #2
Text3.Text = Text1.Text & "-" & Text2.Text
c = Text3.Text
Open w3 For Output As #3
Print #3, c
Close #3
End Sub
后面不知道如何办了。?????????