Hi fwh's,
to clean up the files from HTML code,
exists some function?
Ciao, best regards,
Ugo
Ugo
Hi fwh's,
to clean up the files from HTML code,
exists some function?
Rochinha wrote:Friend
I recomend to you ASP. Use the FSO object to manipulate files on server.
Here some examples with this functions:
Web Explorer
FileMan. The best.
Ugo,
Perhaps you can use IE and OLE.
http://msdn.microsoft.com/library/defau ... plorer.asp
There is a command to "selectall" and another for "removeformat." So, you could open IE and load the HTML file, then use these commands, then copy to the clipboard, then paste from the clipboard (using FWH) and save to a file.
James
FUNCTION MAIN()
LOCAL oExplorer := CREATEOBJECT( "InternetExplorer.Application" )
oExplorer:Navigate2( "www.emagsoftware.it/gratis.htm" )
WHILE oExplorer:ReadyState <> 4
HB_IDLESLEEP( 1 )
ENDDO
? oExplorer:Document:Body:InnerText
oExplorer:Quit()
INKEY( 0 )
RETURN NILJames Bott wrote:Ugo,
Perhaps you can use IE and OLE.
http://msdn.microsoft.com/library/defau ... plorer.asp
There is a command to "selectall" and another for "removeformat." So, you could open IE and load the HTML file, then use these commands, then copy to the clipboard, then paste from the clipboard (using FWH) and save to a file.
EnricoMaria wrote:Try this:
FUNCTION MAIN() LOCAL oExplorer := CREATEOBJECT( "InternetExplorer.Application" ) oExplorer:Navigate2( "www.emagsoftware.it/gratis.htm" ) WHILE oExplorer:ReadyState <> 4 HB_IDLESLEEP( 1 ) ENDDO ? oExplorer:Document:Body:InnerText oExplorer:Quit() INKEY( 0 ) RETURN NIL
EnricoMaria wrote:Try this:
FUNCTION MAIN() LOCAL oExplorer := CREATEOBJECT( "InternetExplorer.Application" ) oExplorer:Navigate2( "www.emagsoftware.it/gratis.htm" ) WHILE oExplorer:ReadyState <> 4 HB_IDLESLEEP( 1 ) ENDDO ? oExplorer:Document:Body:InnerText oExplorer:Quit() INKEY( 0 ) RETURN NIL
EMG
A bug on Vista?
EMG
Have you tried to run the program as Administrator?
Ugo wrote:Hi fwh's,
to clean up the files from HTML code,
exists some function?
EnricoMaria wrote:A bug on Vista?
Otto wrote:Have you tried to run the program as Administrator?
NK wrote:
look at this tool:
http://www.baccan.it/opensource/html2txt201.zip
Regards, Norbert
Ugo wrote:EnricoMaria wrote:A bug on Vista?
or IE7 Bug?