Const URL = "http://www.realtimesoft.com"

Set ie = CreateObject("InternetExplorer.Application")
Set sys = CreateObject("UltraMon.System")

ie.Visible = True
ie.FullScreen = True

ie.Left = sys.DesktopLeft
ie.Top = sys.DesktopTop
ie.Width = sys.DesktopWidth
ie.Height = sys.DesktopHeight

ie.Navigate URL

