

| Type | Description | |||
| String | A string expression that indicates the name of the group. |
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