property NNTP.NewGroups (Date as Variant, Time as Variant, [GMT as Variant], [Distributions as Variant]) as Groups
Retrieves a Groups collection indicating the list of News groups created since Date and Time.

TypeDescription
Date as Variant A DATE expression that indicates the date from when the new groups will be listed. 
Time as Variant A TIME expression that indicates the time from when the new groups will be listed. 
GMT as Variant A boolean expression that indicates whether the the Date and Time are evaluated to the 0 meridian.
Distributions as Variant A string expression that indicates the list of distribution groups, enclosed in angle brackets.
Groups A Groups collection being accessed.
The NewGroups property gets a collection of Group objects that have been created since Date/Time. If specified, the Distributions parameter of a new newsgroup (e.g, 'net' in 'net.wombat') will be examined for a match with the distribution categories listed, and only those new newsgroups which match will be listed. If more than one distribution group is to be listed, they must be separated by commas within the angle brackets.

The following sample displays the list of groups being created 1000 days ago:

Dim n As New EXNNTPLibCtl.NNTP

Private Sub Form_Load()
    Dim g As EXNNTPLibCtl.Group
    If (n.Connect("news.devx.com")) Then
        For Each g In n.NewGroups(Date - 1000, Time)
            Debug.Print g.Name
        Next
        n.Disconnect
    End If
End Sub