Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Running a browser window inside VFP
Message
From
28/09/2002 14:12:55
 
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00705577
Message ID:
00705582
Views:
8
Hi, Alfred.

>Is there a way of running a browser window inside a VFP application?

If you want to run a full IE instance inside VFP, you can do this:
oIE = CreateObject("InternetExplorer.Application")
oIE.Navigate2("http://www.levelextreme.com")
oIE.Visible = .T.
If you want to insert IE inside a VFP form, you can use the Microsoft Web Browser ActiveX Control. If this is what you want, take a look on a FFC class, or just insert the mentioned ActiveX Control onto you VFP form.
Claudio Lassala
Previous
Reply
Map
View

Click here to load this message in the networking platform