摘要: notes://oa.buaa.edu.cn@buaa/__482574FF00066035.nsf/0/4027B357ED548C734825779D000219A2?OpenDocumenthttp://oa.buaa.edu.cn/WebOffice/MoaWebGongGao.nsf/($All)/4027B357ED548C734825779D000219A2?OpenDocument 阅读全文
posted @ 2010-10-12 16:13 小爱博客 阅读(265) 评论(0) 推荐(0)
摘要: 转载自http://carysun.javaeye.com/blog/463228在Domino的数据库属性的 “高级” 附签(选择文件->数据库->属性),选中“允许软删除”,这样我们就启用了软删除功能,当一个文档没有删除的时候我们可以使用NotesDatabase的GetDocumentByID(NoteID)和GetDocumentByUNID(UNID)方法来得到该文档,如果我们将该文档软删除后,我们在使用GetDocumentByUNID来获取该文档就会报如下错误: ---------------------------Invalid universal id (4091 阅读全文
posted @ 2010-10-12 15:48 小爱博客 阅读(267) 评论(0) 推荐(0)
摘要: 注:本文转载自:http://zhidao.baidu.com/question/161401549.htmlReDim 语句用来定义或重定义原来已经用带空圆括号(没有维数下标)的 Private、Public 或 Dim 语句声明过的动态数组的大小。可以使用 ReDim 语句反复地改变数组的元素以及维数的数目,但是不能在将一个数组定义为某种数据类型之后,再使用 ReDim 将该数组改为其它数据类型,除非是 Variant 所包含的数组。如果该数组确实是包含在某个 Variant 中,且没有使用 Preserve 关键字,则可以使用 As type 子句来改变其元素的类型,但在使用了此关键字的 阅读全文
posted @ 2010-10-10 10:49 小爱博客 阅读(826) 评论(0) 推荐(0)
摘要: 转自:http://www.hanhe-tech.com:8089/blog/318-5102.html1.查找出查找内容在多值域中的索引值getItemIndex(域名,域值,文档)Public Function getItemIndex(ByVal fieldName As String, ByVal itemVal As Object,ByVal doctt As NotesDocument) As IntegerDim i As IntegerDim j As IntegerDim item As NotesItemitem = doctt.GetFirstItem(fieldName 阅读全文
posted @ 2010-09-12 16:04 小爱博客 阅读(364) 评论(0) 推荐(0)