`

The basic of LotusScript Agent

阅读更多

1、FTSearch搜索:
 Set dc=db.Ftsearch("name",0)  
         '0位置为最大的查询数,0为所有匹配的文件  FTSearch必须创建数据库索引
 Set doc=dc.Getfirstdocument()
2、Item:
 Set doc=dc.Getfirstdocument()
 While Not doc  Is Nothing
   ForAll ritem In doc.Items
      MsgBox ritem.name
   End ForAll
 Wend
3、取出特定的域

Set doc=view.getFirstdocument()
 If doc.HashItem("yu") <> "" Then
    Set item=doc.getfirstitem("yu")
          Set doc=view.getNextdocument(doc)
 End If
4、使用文本属性
If doc.Hashitem("yu") <> ""  Then
 Set doc=dc.Getfirstdocument()
  While Not doc Is  Nothing
    ForAll itemValue In doc.yu
              itemValue = "Anonymous"
          End ForAll   
      Set doc=dc.Getnextdocument(doc)
  Wend
End If
5、获取域值:
   ForAll itemValue In doc.Getitemvalue("yu")
6、添加域
  set item =new NotesItem(doc,"newYu",session.UserName)
  Call doc.Appenditemvalue("newYu",Newvalue)
7、替换值:
  1)、 While Not doc Is Nothing
  Call doc.Replaceitemvalue("resName","newValue")
  Set doc=dc.getnextdocument(doc)
 Wend

   2)、Set doc=dc.Getfirstdocument()
 While Not doc Is Nothing
  'Call doc.Replaceitemvalue("resName","newValue")
  Set item =doc.Getfirstitem("yu")
  While Not item Is Nothing
     ForAll resitems In doc.Itemsv(0)
        resitems="newVlaue"
     End ForAll
     doc.name= doc.Itemsv(0)
     Set item =doc.getnextitem(item)
  Wend
  Set doc=dc.getnextdocument(doc)
 Wend
8、拷贝域
Set item =doc.Getitemvalue("name")
call item.Copyitemtodocument(doc, "name")
call doc.save(true,false)
call doc1.Copyallitems(doc2,true)  ‘替换所有的
9、删除指定的域:
1)、 For j=1 To dc.count
       Set item=doc.Getitemvalue("name")
       Wile Not item Is  Nothing
       Call item.Remove()
       Call doc.Save(true,false)
       Wend
       Set doc=dc.Getnthdocument(j)
       Next
2)、For j=1 To dc.count  
      While Not doc.Hasitem("name")
      Call doc.Removeitem("name")
      Call doc.Save(True,false)
     Wend 
     Set doc=dc.Getnthdocument(j)   
     Next
10、RTF文本域的输出:
     Set item=doc.GetFirstItem("RtfYU")
     MsgBox item.Text
11、在代理中使用公式:

 temp=Evaluate("@ReplaceSubstring(aa;bb;cc)",doc)

12、 嵌入对象:
 ForAll csx In doc.Embeddedobjects
    csx.name
 End ForAll
    Set doc=dc.Getnthdocument(j)
       Next
13、激活嵌入对象:
    Call doc.EmbeddedObjects(0).Activate(True)
14、if的用法
    Set doc=dc.Getfirstdocument()
    If Not IsEmpty(db.Agents) Then
    ForAll agent In db.Agents
     MsgBox agent.name
    End ForAll
     End If

分享到:
评论

相关推荐

    lotus web 编程

    LotusScript的优势之一在于它与Visual Basic的语法相似,这使得VB开发者能够快速上手。此外,尽管Java代理提供了如RMI等高级功能,但对于那些不熟悉Java的新手或更习惯于LotusScript的开发者来说,它仍然是一个实用...

    Lotus Notes程序设计随笔.rar

    4. **LotusScript编程**:Lotus Notes的主要编程语言是LotusScript,它是Visual Basic的一个变种,用于创建各种脚本,如自动执行任务、处理事件等。学习LotusScript是掌握Notes程序设计的关键。 5. **Formula ...

    notes编程环境祥解和管理

    它类似于Visual Basic,支持对象模型,可以处理数据库操作、用户界面交互和服务器任务。 3. **Formula Language**: Notes的公式语言用于快速构建动态的表单计算和视图排序。它是一种表达式语言,简洁且强大。 4. *...

    Lotus程序设计

    LotusScript是Lotus Notes/Domino的主要编程语言,类似Visual Basic,用于编写表单、视图和代理的逻辑。它支持事件驱动编程,如打开、计算、关闭等,用于处理用户交互和后台任务。 四、Formula语言 Formula语言是...

    louts notes编程学习笔记

    1. **LotusScript**: LotusScript是Lotus Notes的主要编程语言,用于构建Notes应用的业务逻辑。它与Visual Basic语法相似,支持多种数据类型、流程控制结构、函数和类。 2. **Formula Language**: 用于编写计算字段...

    domino面试题

    在提供的代码中,有两个实现冒泡排序的子程序,一个是基于VBA(Visual Basic for Applications),另一个是基于Java。两者都实现了相同的功能,即对数组中的整数或日期对象进行升序排列。 VBA版本的冒泡排序: - ...

    lotus开发集锦

    2. ** LotusScript**:这是一种特定于DOMINO的脚本语言,用于实现应用程序的业务逻辑。它类似于Visual Basic,支持面向过程编程,也可以用于处理邮件、文档和数据库操作。 3. **Formula Language**:DOMINO中的公式...

    中文Lotus_Domino_R5_Web_高级编程

    - **LotusScript**: Lotus Domino的主要编程语言,类似Visual Basic,用于服务器端和客户端逻辑。 - **Formula Language**: 用于处理数据库计算和规则,简洁且高效。 - **Java API for Lotus Domino**: 提供了与...

Global site tag (gtag.js) - Google Analytics