Windows System VB.Net

Imports System.Windows.Forms
Public Class MainClass
   Public Shared Sub Main()
        Try
            System.Diagnostics.Process.Start("IExplore.exe", "www.rntsoft.com")
        Catch
            MessageBox.Show("Error launching Internet Explorer")
        End Try
   
   End Sub
End Class