Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Running IE with VFP
Message
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00321928
Message ID:
00321982
Views:
19
>>Hi all
>>
>>I'd like to run IE from a menu in one of my applications that calls IE and then navigates to a specific web address. In my last message (which heaps of people responded to) I got some really good feedback - but unfortunately I didn't understand much of it! I've tried to use the ShellExecute() command without much success...
>>
>>Does anyone have some sample code that I could perhaps "borrow" that calls IE and navigates the user to a web address????
>>

Thanks guys,

The following code seems to create an error

oShell = CREATEOBJ('Shell.Application')
oShell.Open('http://www.levelextreme.com')

"OLE Error Code - Class not registered"

Don't worry about it, as the solution from Erik seems to work fine. Many thanks to both of you for the response.

Cheers

Chris

>
>The easiest way to do this would be to use the Shell.Application automation object; going to a URL is as simple as:
>
>oShell = CREATEOBJ('Shell.Application')
>oShell.Open('http://www.levelextreme.com')
>
>This pretty much assumes that IE4 or later is installed; if it is, it's virtually certain that Shell.Application is there.
>
>You can also install the WebBrowser ActiveX control, or use the FFC ShellExecute class rather than relying on the services of Shell.Application, or any of dozens of other options. Once opened, you can hook the instance of IE that you fired up via the Shell.Application's Windows collection.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform