

| Type | Description | |||
| Name as String | A string expression that indicates the name of the group being accessed. | |||
| Group | A Group object being returned. |
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