property NNTP.Groups as Groups
Retrieves the news groups collection as returned by the server.

TypeDescription
Groups A Groups collection that indicates the news groups available on the server.
Use the Groups property to access the collection of the news groups available on the server. Use the Group property to access a news group by its name. Use the Articles property to access any article in the group.  

The following sample displays all news groups from the 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