tags:

views:

33

answers:

2

i need an example - how to parse RSS feeds by under Visual Basic 6... help please)

A: 

here you go.

Dim r As New Rss

' Get the searchenginewatch.com feed
success = r.DownloadRss("http://feeds.searchenginewatch.com/sew")
If (success = 0) Then
    MsgBox "Failed to download RSS feed"
    Exit Sub
End If

' Get the first channel
Dim channel As Rss
Set channel = r.GetChannel(0)

Dim item As Rss

nItems = channel.NumItems
For i = 0 To nItems - 1
    Set item = channel.GetItem(i)
    List1.AddItem item.GetString("title")
Next
kacalapy
This answer isn't much help right now. You must have referenced a special library. You need to tell us which one it was.
MarkJ
+1  A: 

One place to begin might be Introducing the Windows RSS Platform.

However I haven't seen any useful examples.

Bob Riemersma