Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Open site
Message
 
To
26/10/2005 08:13:07
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:
01062185
Views:
18
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
Next
Reply
Map
View

Click here to load this message in the networking platform