Type | Description | |||
String | A string expression that indicates the content of the article. |
The following sample displays the first article in the first 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" Set g = n.Groups.Item(0) Debug.Print g.Articles.Item(g.Articles.First).Article n.Disconnect End Sub
The following sample displays the first article on the "c++.announcements" news group:
Dim n As New EXNNTPLibCtl.NNTP Private Sub Form_Load() Dim g As EXNNTPLibCtl.Group n.Connect "news.devx.com" Set g = n.Group("c++.announcements") Debug.Print g.Articles.Item(g.Articles.First).Article n.Disconnect End Sub