Lotus
iteye_12817
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
About response doc
http://www.dominopower.com/issues/issue200201/expand0102003 http://www.notesninjas.com/A555F9/nn.nsf/ByAlias/Unresponse Responses原创 2010-08-26 10:13:34 · 160 阅读 · 0 评论 -
实时更新RTF域的内容
call uidoc.close call ws.editdocument(doc,false)原创 2010-06-05 23:54:29 · 191 阅读 · 0 评论 -
在Lotus开发中引入jar包
http://www.docin.com/p-41744081.html原创 2010-06-06 21:31:48 · 293 阅读 · 0 评论 -
运行代理权限问题
Just to head off any technical support requests for Stubby or the Weather Fetcher database, please let me remind you that Lotus Notes agents that call web services from a server require a security acc...原创 2010-06-10 16:43:39 · 148 阅读 · 0 评论 -
在Notes视图中游弋
Sub Initialize() Dim session As New NotesSession Dim db As NotesDatabase Dim view As NotesView Dim entry As NotesViewEntry Dim entryDoc As NotesViewEntry Dim entryTown As NotesViewEntry Dim nav As Not...原创 2010-06-11 00:47:08 · 140 阅读 · 0 评论 -
邮件链接
拷贝数据库链接然后另存为ndl文件 http://wenku.baidu.com/view/2e36b7c4bb4cf7ec4afed003.html原创 2010-06-14 14:56:55 · 198 阅读 · 0 评论 -
外发邮件挂起的处理
Question: You have outgoing mail pending. Do you want to transfer it now? but outgoing mail box is empty I got this message when I started notes and exiting after I was sorting out a new connection ...原创 2010-06-25 11:10:33 · 571 阅读 · 0 评论 -
lotus 8.5
http://space.itpub.net/14751907/viewspace-586491原创 2010-07-09 13:44:42 · 168 阅读 · 0 评论 -
Java agent
http://space.itpub.net/10114847/原创 2010-07-15 11:09:17 · 128 阅读 · 0 评论 -
删除Profile文档的几种方法
http://www-01.ibm.com/support/docview.wss?rs=475&uid=swg21088892原创 2010-07-16 16:17:44 · 1867 阅读 · 0 评论 -
Is Not a form
http://www-10.lotus.com/ldd/nd8forum.nsf/DateAllFlatWeb/296ff3f548dd666b852574e3006975f8?OpenDocument原创 2010-08-06 11:15:54 · 130 阅读 · 0 评论 -
读取RTF域中的Table
This code is designed to create a non-tabbed table of two rows and five columns in a rich text field to display information. I've added in static text but it could be used to display information from ...原创 2010-06-05 23:50:27 · 350 阅读 · 0 评论 -
在RTF域中添加Table
Developers sometimes need to retrieve cell values within a table in a Lotus Notes rich-text field (RTF). The following LotusScript code will display the values in each cell within the body of any Lotu...原创 2010-06-05 23:48:44 · 251 阅读 · 0 评论 -
Notrix 6.0 生成的SQL 语句兼容问题
预期结果:借助第三方软件Notrix实现在Notes和MS SQL之间复制数据,达到数据信息的同步。 问题描述:执行Replication Job后,此job对应的日志中提示报错: 问题原因: 我们做了如下测试,执行此SQL 语句: select * from Requset holdlock where TicketNo='P100525050902' 1、在SQL 2...原创 2010-06-01 14:15:32 · 264 阅读 · 0 评论 -
如何察看隐藏视图
goto可以间接查看视图 按着ctrl+shift,通过goto可以间接查看所有的视图,包括隐藏视图原创 2010-08-30 14:12:06 · 180 阅读 · 0 评论 -
创建时间域
Dim dt As NotesDateTime Dim dtItem As NotesItem Set dt = New NotesDateTime("2010-01-01") Set dtItem = New NotesItem(doc,"Year","") Set dtItem.DateTimeValue = dt dtItem.IsSummary = True 'dis...原创 2010-09-03 15:23:47 · 154 阅读 · 0 评论 -
如何获取视图中列的多值域的值?
http://www-10.lotus.com/ldd/nd6forum.nsf/DateAllThreadedweb/ffa23fdf75d6c94585257719006d057c?OpenDocument http://www.notes411.com/dominosource/forum.nsf/0/D3BECAF93ED2D8D980257162005CE7B8!opendocumen...原创 2010-09-07 14:45:14 · 218 阅读 · 0 评论 -
Excel编程
xlWorkSheet.Cells(1,iYear).Value = vePOC.ColumnValues(1) xlWorkSheet.Range("A"+Cstr(iYear+1)).Value = vePOC.ColumnValues(1)原创 2010-09-07 15:46:05 · 156 阅读 · 0 评论 -
把导入的图片还原为图片文件
Sub Initialize() Dim s As New NotesSession Dim db As NotesDatabase Set db = s.Currentdatabase 'Set db = New NotesDatabase( "YourServer/svr/somewhere", "database.nsf") Call ExtractImageReso...原创 2010-09-08 22:56:55 · 291 阅读 · 0 评论 -
扩展Implode方法
问题描述:Lotuscript中提供的Implode对整数数组进行处理的时候,报错提示“对象不匹配”。 解决办法: Implode对字符串数组进行处理 Function ExtImplode(valueToImplode,Seperator As String) As String '=== Returns the value of the list or array imploded ...原创 2010-09-09 18:01:17 · 254 阅读 · 0 评论 -
代码复用的小例子
Sub CodeShare(Source As Button) Dim sType As String Dim i As Integer sType = "N" If sType = "N" Then For j=0 To 3 Msgbox "N" Gosub lala j = j + 1 Next Else Msgbox "1" ...原创 2010-09-10 14:46:25 · 389 阅读 · 0 评论 -
通过Web Service读取Notes文档中的附件
需求分析: 在Notes DB中通过webservice读取Notes文档中rtf域的内容(为日常邮件的body内容,可能有邮件收件人,抄送人,主题,附件,邮件body内容等)。此web service作为Provider。 在.Net程序设计中调用Provider类型的Notes暴露的web service,把rtf域的内容读取出来并保存为*.rtf的文档。 相关背景资料: 在wi...原创 2010-05-19 17:51:56 · 337 阅读 · 0 评论 -
架起Lotus和关系型数据库的桥梁——DECS
DECS的缺点:不能同步已有的,性能不高。DECS基本上是ODBC 问题描述: I am looking to get DECS setup on a Domino 7.0.2 server. The server has been upgraded to 7.0.2 from 6.5.1. When enabling the DECS tasks, I am showing the serv...原创 2010-05-24 23:26:08 · 280 阅读 · 0 评论 -
Lotus 用户ID 的备份
http://searchdomino.techtarget.com/generic/0,295582,sid4_gci1394441,00.html?track=NL-598&ad=763941&asrc=EM_NLT_11444195原创 2010-05-25 22:00:07 · 297 阅读 · 0 评论 -
NotesUIDocument和NotesDocument的差别
测试目的:某域值更新后,隐藏条件设置与次域有关的相关域的隐藏立即生效. 'Call uidoc.FieldSetText(strRowNumItm,Cstr(iRowNum)) Call note.ReplaceItemValue(strRowNumItm, iRowNum) Call uidoc.Reload() Call uidoc.Refresh 一句话:尽量使用NotesD...原创 2010-08-10 11:52:25 · 375 阅读 · 0 评论
分享