Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
IE AddressBar
Message
From
21/08/2000 13:20:04
 
 
To
21/08/2000 01:12:07
General information
Forum:
Visual FoxPro
Category:
COM/DCOM and OLE Automation
Title:
Miscellaneous
Thread ID:
00407194
Message ID:
00407401
Views:
22
>I want to insert URL or any other string just into AdessBar of IE.

You have to have an object reference to the browser before you can do this. If you mean you want to do this to a live browser, than you can gain an object reference with the Shell object's Windows collection:
oShell = CREATEOBJECT("Shell.Application")
FOR EACH oWindow IN Shell.Windows
  IF oWindow.LocationURL = "http"
    * Window instance is IE, not Explorer
    oWindow.Navigate("www.myurl.com")
  ENDIF
ENDFOR
Erik Moore
Clientelligence
Previous
Reply
Map
View

Click here to load this message in the networking platform