作为创建基本修订控制系统的一部分,我想以编程方式禁用Lotus Notes模板上的设计元素级别继承。到目前为止,我已经尝试了以下方法:
我想探索的区域:
$Class
项目。有人对如何执行此操作有任何建议,或者是否有其他方法可以删除继承?
以下子代码似乎起作用,它从7.0.3客户端可以产生的任何设计元素中删除该标志。我从同一主题的NotesNoteCollection
条目中获得了有关Ian's blog的线索:
Private Sub clearDesignInheritance(db As notesdatabase)
On Error Goto errorthrower
Dim nc As NotesNoteCollection
Set nc = db.CreateNoteCollection(True) ' Select all note types...
nc.SelectDocuments=False ' ...except data documents.
Call nc.BuildCollection
Dim noteid As String
noteid = nc.GetFirstNoteId
Dim doc As notesdocument
Do Until noteid=""
Set doc = db.GetDocumentByID(noteid)
If doc.HasItem("$Class") Then
Call doc.RemoveItem("$Class")
Call doc.save(False,False,False)
End If
noteid = nc.GetNextNoteId(noteid)
Loop
Exit Sub
ErrorThrower:
Error Err, Error & Chr(13) + "Module: " & Cstr( Getthreadinfo(1) ) & ", Line: " & Cstr( Erl )
End Sub