Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Web Browser Control
Message
 
To
12/04/2002 11:05:12
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Miscellaneous
Thread ID:
00643929
Message ID:
00644349
Views:
9
Tom,

One other thing just in case you weren't aware of it. If you're doing a type of slideshow, I'm assuming you're keeping total control over what pages they see in the control.

If your navigation is controlled from within VFP, you could just convert your page to a string and write it straight to the browser without needing the Navigate methods:


thisform.oleBrowser.Navigate('about:blank') && Navigate first to load DOM..

* then
local lcHTML
lcHTML = fileToStr('x:\myhtmlpage.htm') && convert html to string.
with thisform.oleBrowser.document
.open()
.write(lcHTML)
.close()
endwith

Previous
Reply
Map
View

Click here to load this message in the networking platform