Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Html2Text - Function
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00912109
Message ID:
00912202
Vues:
39
This message has been marked as the solution to the initial question of the thread.
Hi,
Use WebBrowser control, the code might looks like
WITH Thisform.oWebBrowserControl
  .Navigate("about:blank")
  .Document.Open()
  .Document.Write(lcHtml)
  .Document.Close()
  lcPlainText = .Document.Body.InnerText
ENDWITH
>Hi!
>
>Is there a fast free way to convert HTML Content to Plain ASCII?
>Searching for something like an API, or maybe a XML Syntax.
>
>Tried to use the Createobject('internetexplorer.application') but it is way to slow and not reliable, when reloading a page frequently.
>
>Thank you
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform