' visit http://bytescout.com/rss2htmlscout_example_vb.html for full version of this example
' converting RSS to HTML with Visual Basic. Check /Examples/Visual Basic/ sub-folder for full source
' code for this example

Private Sub Form_Load()
Set RSS2HTML = CreateObject("RSS2HTMLScoutLib.RSS2HTMLScout")

RSS2HTML.ItemsPerFeed = 5 ' display only 5 latest items

' ##### 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" ' save output to HTML file
 
End Sub

' visit http://bytescout.com/rss2htmlscout_example_vb.html for full version of this example

Copyright 2005-2006