Download and install the latest version of RSS2HTML Scout.
You can download it here
2) Run Notepad
3) To
convert RSS into HTML and then save generated HTML code into
file we will create a very simple
script using VBScript scripting language:
Set RSS2HTML
= CreateObject("RSS2HTMLScoutLib.RSS2HTMLScout")
RSS2HTML.ItemsPerFeed = 10 ' display only 5 latest items from every feed
' ##### we can add more than one RSS feed #########
RSS2HTML.AddFeed "http://bytescout.com/news.xml",
180 ' update every 180 minutes (3 hours)
RSS2HTML.Execute
RSS2HTML.SaveOutputToFile "Output.html"
Set RSS2HTML = nothing
Just copy and paste code
from this page into notepad and save it as a "Convert.VBS" file.
4) Double-click "Convert.VBS" file
in Explorer or in another file manager and VBScript .VBS file
will be executed by Windows.
The script will generate
"Output.html" file.
You
can view this HTML file using Internet
Explorer or
another browser. To display HTML files in your Visual
Basic application please use WebBrowser
control