

| Type | Description | |||
| Long | A long expression that indicates the number of the next article, or -1 if the article is not found. |
The following sample displays all articles headers in the "security.bugs" news group:
Dim n As New EXNNTPLibCtl.NNTP
Private Sub Form_Load()
Dim g As EXNNTPLibCtl.Group, a As EXNNTPLibCtl.Article
n.Connect "news.devx.com"
Set g = n.Group("security.bugs")
Dim i As Long
i = g.Articles.First
While Not i = -1
Set a = g.Articles.Item(i)
Debug.Print a.Header
i = g.Articles.Next
Wend
n.Disconnect
End Sub