Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Open site
Message
From
27/10/2005 02:25:31
 
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Environment versions
Visual FoxPro:
VFP 8
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01062176
Message ID:
01062517
Views:
9
hi,
thank you so much, it works

best regards
m.qasem
>If you have IE installed:
>
>obj = CREATEOBJECT("InternetExplorer.Application")
>obj.Navigate("google.com")
>obj.Visible=.T.
>
>If you want to use already running IE instance, first available window:
>
>oShell = CREATEOBJECT("Shell.Application")
>oWindows = oShell.Windows
>
>FOR EACH oWindow IN oWindows
>	IF "iexplore.exe" $ oWindow.FullName
>		oWindow.Navigate("google.com")
>		RETURN
>	ENDIF
>NEXT
>
Previous
Reply
Map
View

Click here to load this message in the networking platform