

| Type | Description | |||
| Index as Variant | A long expression that indicates the index of the group in the Groups collection, or a string expression that indicates the group's name. | |||
| Group | A Group object being accessed. |
The following sample displays all news groups available on the news server:
Dim n As New EXNNTPLibCtl.NNTP
Private Sub Form_Load()
Dim g As EXNNTPLibCtl.Group
n.Connect "news.devx.com"
For Each g In n.Groups
Debug.Print g.Name
Next
n.Disconnect
End Sub
The following sample displays the news groups available on the news server by using the Item property of the Groups collection:
Dim n As New EXNNTPLibCtl.NNTP
Private Sub Form_Load()
Dim g As EXNNTPLibCtl.Group
n.Connect "news.devx.com"
Dim i As Long
For i = 0 To n.Groups.Count - 1
Debug.Print n.Groups(i).Name
Next
n.Disconnect
End Sub