property Group.Last as Long
Retrieves a value indicating the number of the last known article in the news group.

TypeDescription
Long A long expression that indicates the number of the last known article in the news group.
The Last property gets the number of the last article in the news group. Use the Item property to retrieve an article based on its number. Use the First property to get the number of the first article in the news group.

The following sample displays the last article on the each news group 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.Articles(g.Last).Article
    Next
    n.Disconnect
End Sub