Jump to content
Xtreme .Net Talk

superfoo

Members
  • Posts

    2
  • Joined

  • Last visited

Personal Information

  • Visual Studio .NET Version
    Visual Studio .NET Professional
  • .NET Preferred Language
    Visual Basic .NET

superfoo's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Reference add the reference from the COM tab it is the 'Microsoft Internet Controls' (C:\WINNT\System32\shdocvw.dll). lates :cool:
  2. Try the .NET way shIE = New SHDocVw.InternetExplorer() With shIE .AddressBar = False .FullScreen = False .MenuBar = False .Resizable = True .StatusBar = False .TheaterMode = False .ToolBar = Convert.ToInt32(False) .Height = 575 .Width = 750 .Top = 20 .Left = 20 .Visible = True Call .Navigate(URL) End With
×
×
  • Create New...