Skip to content

Instantly share code, notes, and snippets.

@pedrofaria
Created September 28, 2010 15:16
Show Gist options
  • Save pedrofaria/601173 to your computer and use it in GitHub Desktop.
Save pedrofaria/601173 to your computer and use it in GitHub Desktop.
Set objExplorer = CreateObject("InternetExplorer.Application")
objExplorer.Navigate "drf2"
objExplorer.AddressBar = 0
objExplorer.Visible = 1
objExplorer.ToolBar = 0
objExplorer.StatusBar = 0
objExplorer.Width= 850
objExplorer.Height = 680
'objExplorer.Left = 500
objExplorer.Top = 30
Set objExplorer2 = CreateObject("InternetExplorer.Application")
objExplorer.Navigate "endereço da outra pagina"
objExplorer.AddressBar = 0
objExplorer.Visible = 1
objExplorer.ToolBar = 0
objExplorer.StatusBar = 0
objExplorer.Width= 850
objExplorer.Height = 680
'objExplorer.Left = 500
objExplorer.Top = 30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment