Type | Description | |||
Long | A long expression that indicates the number of the first article in the news group. |
The following sample displays first article in each news group available on the news 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.First).Article Next n.Disconnect End Sub