Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Web Browser Control
Message
 
À
12/04/2002 11:05:12
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire d'écran & Écrans
Divers
Thread ID:
00643929
Message ID:
00644349
Vues:
10
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

Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform