property Articles.Item (Number as Variant) as Article
Returns a specific Article from the Articles collection, based on its number.

TypeDescription
Number as Variant A long expression that indicates the number of the article being requested.
Article An Article object that holds information about the news article. 
Use the First property to get the number of the first article in the news group. Use the Last property to retrieve the number of the last article in the new group. Use the Next property to get the number of the next article on the news group. 

The following sample displays all subjects in the "security.bugs" news group:

Dim n As New EXNNTPLibCtl.NNTP

Private Sub Form_Load()
    Dim g As EXNNTPLibCtl.Group, a As EXNNTPLibCtl.Article
    n.Connect "news.devx.com"
    Set g = n.Group("security.bugs")
    
    Dim i As Long
    i = g.Articles.First
    While Not i = -1
        Set a = g.Articles.Item(i)
        Debug.Print a.XOver.Field("Subject")
        i = g.Articles.Next
    Wend
    n.Disconnect
End Sub