Alright. So I am using this to open up Internet explorer from my program

VB Code:
  1. Set browser = CreateObject("InternetExplorer.Application")
  2.     browser.Visible = True
  3.     browser.Navigate "http://www.google.com"

however im trying to do 2 things...

1) i want to be able to pull the url from the browser i just opened and display it in my program... i tried text1.text = browser.LocationURL but it didnt work...

2) i also want to be able to have a button that will direct the browser that i just opened to a different link..

any help is appreciated