Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
IE AddressBar
Message
De
21/08/2000 13:20:04
 
 
À
21/08/2000 01:12:07
Information générale
Forum:
Visual FoxPro
Catégorie:
COM/DCOM et OLE Automation
Titre:
Divers
Thread ID:
00407194
Message ID:
00407401
Vues:
23
>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
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform