Type | Description | |||
Boolean | A boolean expression that indicates whether the news group allows posting articles. |
The following sample displays a boolean value that indicates whether positing new articles is allowed in the "c++.general" 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++.general") Debug.Print g.AllowPost n.Disconnect End Sub