HTML To WordCreate a Word document from an HTML page
File Name : html2word.vbs Requirement : IE5, Word Author : Jean-Luc Antoine Submitted : 19/12/2001 Category : Other option explicit 'Just change these two lines Const HTMLFileIn="c:\myfile.htm" 'could be using http Const DocFileOut="d:\newfile.doc" Dim MyWord,oIE set MyWord=CreateObject("Word.Document") Set oIE=CreateObject("InternetExplorer.Application") oIE.Navigate HTMLFileIn Attend oIE.document.body.createTextRange.execCommand("Copy") Attend MyWord.Content.Paste MyWord.SaveAs DocFileOut MyWord.Close oIE.Quit Set oIE=Nothing set MyWord=Nothing msgbox HTMLFileIn & " is now saved as " & DocFileOut Sub Attend Wscript.Sleep 500 While oIE.busy Wscript.Sleep 1000 Wend While oIE.Document.readyState <> "complete" Wscript.Sleep 1000 Wend End Sub |
|||||
![]()
|
|