Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Html2Text - Function
Message
From
10/06/2004 09:43:07
 
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00912109
Message ID:
00912202
Views:
40
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
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform