当前位置: 代码迷 >> Lotus >> 怎么用代理增加视图列
  详细解决方案

怎么用代理增加视图列

热度:224   发布时间:2016-05-05 07:23:14.0
如何用代理增加视图列
想用代理给一个视图增加一列,要怎么写?

------解决方案--------------------
用notesview类的CreateColumn方法。帮助里面有例子的
This agent creates a new column at the end of the "By Category" view based on the Subject2 field.
Sub Initialize
Dim s As New NotesSession
Dim col As NotesViewColumn
Set view = s.CurrentDatabase.GetView("By Category")
Set col = view.CreateColumn(view.ColumnCount + 1, _
"Topic 2", _
"Subject2")
Messagebox "Position: " & col.Position & Chr(13) & _
"Title: " & col.Title & Chr(13) & _
"Formula: " & col.Formula,, "New column added"
End Sub
  相关解决方案