VB.NET编程语言为开发人员带来了非常大的好处。virus构建一个性能稳定,安全牢固的开发环境等。那么在这里我们就为大家介绍一下有关VB.NET调用IE的两种代码编写方法,希望能对大家有所帮助。#t#
VB.NET调用IE代码示例:
- Dim p As New Process
- '获得URL
- aURL = GetURL()
- '获得IE路径
- p.StartInfo.FileName =
System.Environment.
GetFolderPath( _ - Environment.SpecialFolder.
ProgramFiles).Trim() _ - & "\Internet Explorer\
IEXPLORE.EXE" - p.StartInfo.Arguments
= aDenURL - '启动IE
- 'p.Start(aDenURL)
- p.Start()
- '主程序开始等待IE结束
- p.WaitForExit()
另一种VB.NET调用IE的方法
- Imports System.Threading
- Private Sub Button1_Click(ByVal
sender As System.Object, ByVal e
As System.EventArgs) Handles
Button1.Click- Dim webobj As Object
- webobj = CreateObject("Internet
Explorer.Application")- With webobj
- .visible = True
- .Navigate2("http://www.google.co.jp/")
- Do While (.busy Or .readyState <> 4)
- Thread.Sleep(100)
- Loop
- .Document.f.q.Value = Me.TextBox1.Text
- .Document.f.btng.Click()
- End With
- MsgBox("completed.")
- End Sub
VB.NET调用IE的相关方法就为大家介绍到这里啦。