2006年5月11日

摘要: NotesDatabase、NotesView、NotesViewEntryCollection等都有FtSearch()方法。 FtSearch除了支持一般关键字检索之外,还支持基于运算符的查询,形如: FIELD XXX CONTAINS YYY。 对于逻辑操作符CONTAINS要注意: 1) 当YYY是单字节英文时,若要进行模糊匹配,可以使用星号*来完成,形如: FIELD fldname... 阅读全文
posted @ 2006-05-11 11:05 helloxuxu 阅读(509) 评论(0) 推荐(0) 编辑
 
摘要: function calcDates(sdate, edate){enddate = new Date (edate);startdate = new Date (sdate);etime = enddate.getTime();stime = startdate.getTime();duration = Math.round((etime-stime)/1000/60/60/24); } 阅读全文
posted @ 2006-05-11 11:00 helloxuxu 阅读(339) 评论(0) 推荐(0) 编辑
 
摘要: Sub Initialize '设置页面属性 Print Print Print Print Print 数据库搜索结果 Print Print Print '设置HTML页面的背景颜色: Print Print Dim session As New NotesSession Dim db As NotesDatabase Dim doc As NotesDocument ... 阅读全文
posted @ 2006-05-11 10:58 helloxuxu 阅读(416) 评论(0) 推荐(0) 编辑