Use Process to Start IExplore.exe : Process « Windows System « VB.Net
- VB.Net
- Windows System
- Process
Use Process to Start IExplore.exe
Imports System.Windows.Forms
Public Class MainClass
Public Shared Sub Main()
Try
System.Diagnostics.Process.Start("IExplore.exe", "www.java2s.com")
Catch
MessageBox.Show("Error launching Internet Explorer")
End Try
End Sub
End Class
Related examples in the same category