

| Type | Description | |||
| Long | A long expression that indicates the number of the last known 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