11 2011 档案
摘要:陈 斌, 高级软件工程师, IBM陈斌是来自 IBM CSTL 的高级软件开发工程师,现在负责 Lotus Domino for IBM i 的开发、支持以及团队领导工作。刘 芳 (liufang4@cnooc.com.cn), 资深互联网工程师, 中国海洋石油总公司刘芳,中国海洋石油总公司资深互联网工程师, 对 SAP 及 Domino 开发有丰富的经验陈 云, 软件工程师, IBM陈云是来自 IBM CSTL 的软件开发工程师,现在从事 Lotus Domino for IBM i 的开发和支持工作。简介:本文介绍了如何利用 LotusScript 来灵活操作 Lotus Notes 富文
阅读全文
摘要:You want to explode a delineated string (e.g. abc; cde; gef; xyz; abc).Optionally, also get the unique values with no holes in the list...An all LotusScript explode option is just using split:linetext = "abc; cde; gef; xyz; abc"rowVals = Split(linetxt, ";")@Explode & @Trim On
阅读全文
摘要:Sub InitializeDim oConn As VariantDim oRs As VariantDim filePath As StringDim Index As IntegerDim vValue As VariantDim strName As StringDim strValue As StringDim docNew As NotesDocumentDim count As LongDim session As New notessessionDim db As notesdatabaseSet db=session.currentdatabasegetAccessDBDat
阅读全文
摘要:Server.CreateObject("Scripting.FileSystemObject")Server.CreateObject("Scripting.Dictionary")HashTableServer.CreateXObject("Word.Application") //ServerActiveXObject("Word.Application") //ClientServer.CreateObject("Excel.Application")//ServerActiveXObj
阅读全文
摘要:Everyone (well, almost everyone) knows that agents can call other agents. A LotusScript agent can call another LotusScript agent using the Run method. You can use the same method to invoke a Java agent, or to invoke a LotusScript agent from a Java agent. When using the Run method, the calling and th
阅读全文
摘要:代理間用Run方法傳遞參數實際上是在第一個代理中創建一份文件,將要傳遞的值賦給文件中的item,然後得到第二個代理的對象并調用Run方法,Run方法的參數是第一個代理創建的文件的NoteID,這樣在第二個代理中根據文件的NoteID得到文件,然后對文件中的值進行一系列操作,這樣就完成了參數傳遞。然後在第一個代理中將之前創建的文件在內存中刪除,然後再根據NoteID得到被第二個代理操作并保存的文件,再對文件中的值進行操作,這樣又完成了一次參數傳遞。 例如:parameterPassing 代理:Dim ss As New NotesSession Dim db As NotesDatabase
阅读全文
摘要:使用GetItemValue方法(1)NotesDocument类別的GetItemValue方法会传回文件中指定栏位的数值。不论栏位值是文字、数字、时间日期…等等, GetItemValue都是以阵列型态来回传,即使其中也沒有任何数值了。使用GetItemValue方法(2)语法valueArray = NotesDocument.GetItemValue_(“ItemName)”Ex.Dim lname As Stringlname = doc.GetItemValue(“LastName”)doc.itemname(0)与doc.getitemvalue(itemname)的区别doc.
阅读全文
摘要:http://www.microsoft.com/data/"Dbq=c:\somepath\mydb.mdb;" & _"Uid=admin;" & _"Pwd="'Create and Open Connection ObjectSet Conn = CreateObject("ADODB.Connection")Conn.Open DBConStr";Data Source=192.168.2.10;User Id=sa;Password=password;Connect T
阅读全文
摘要:在开发设计Domino数据库的时候,Domino对一些特殊的域名称,系统有默认的含义,一般编程过程中需要了解,以便能灵活使用Form:这是表单名SendTo:收件人Subject:发件主题SaveOptions:如果是0则文档不保存,默认是1MailOptions:如果是1,则文档关闭时要被邮寄,默认是0$$Return:这是WEB下提交页面的返回内容$$HTMLHead:这是4。6版本用的,表示页面HEAD的内容,$$HTMLBody:这是4。6版本用的,表示页面Body的属性$Anonymous 1:表示此文档是由匿名表单创建的匿名文档$GroupScheduleShowLegend 1:
阅读全文
摘要:8.04 domino各种内置域2010-08-04 11:30:37|分类: 技术 |标签: |字号大中小订阅 $$ReturnGeneralError;当系统返回错误时用的表单;$$SearchTemplateDefault:查询表单;$$ViewTemplate for base;是用来显示base视图的表单;$$ViewTemplateDefault:为默认表单,也就是说,你打开任何一个视图,如果该视图没有特别指定用哪个表单打开(比如,base视图就指定用$$ViewTemplate for base表单打开),则它就用这个表单打开显示定制的错误消息要定制显示给 Web 用户的错误消息
阅读全文
摘要:工具类别工具名称生产厂商相关网站通用功能自动化测试工具WinrunnerMercuryQuicktest proMercuryXrunnerMercuryQARunCompuwareTestPartnerCompuwareWebKingParasofthttp://www.parasoft.comRobotIBM Rationalhttp://www.ibm.com/cnVisual TestIBM Rationalhttp://www.ibm.com/cnFunctional TesterIBM Rationalhttp://www.ibm.com/cnSilkTestSegueSilkTe
阅读全文