

| Type | Description | |||
| Articles | An Articles collection that holds the news articles collection. |
The following sample displays all articles in the "c++.announcements" 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("c++.announcements")
For Each a In g.Articles
Debug.Print a.Article
Next
n.Disconnect
End Sub