上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 86 下一页
摘要: Domino/Notes Version: 4.x and higherPlatform: Windows 95, 98, NT 4Like me, you probably find LotusScript just cannot do everything you want at times. After seeing the article titled "Changing Drivers on the Road" in the February 1998 Lotus Notes & Domino Advisor a whole new world becam 阅读全文
posted @ 2011-08-07 22:49 hannover 阅读(906) 评论(0) 推荐(0)
摘要: Maintained as a general resource for IBM Lotus Notes/Domino developers and administrators, with information coming from Lotus Notes Help, IBM technotes, as well as developers and admins like you! If any limits seem wrong to you, or if you have experience that says the IBM documentation is wrong, le. 阅读全文
posted @ 2011-08-02 20:26 hannover 阅读(422) 评论(0) 推荐(0)
摘要: 在windows 2003 上安装Lotus Notes 客户端后,运行Notes一闪而过,无法运行,解决方法如下:1.检查Lotus\notes\mui是否有MUI.DAT,没有则拷贝,此文件还关系到中文版的界面是否是中文2.如果NAMES库丢失那么基于pernames.ntf新建拷贝NAMES.NSF到Lotus\notes\data3.将Lotus\notes\data下的notes.ini中以下部分之后删除重新配置[Notes]KitType=1Directory=D:\lotus\notes\dataUserInterface=zh-CN 阅读全文
posted @ 2011-07-31 09:22 hannover 阅读(399) 评论(0) 推荐(0)
摘要: 为了在域中捕获C G I变量,创建一个以C G I变量命名的文本域(例如, HTTP_COOKIE)。一般地,在编辑状态下将该域设置为隐藏,这样用户就不能改变域中的值。当用户打开表单的时候, HTTP_COOKIE环境变量的实际值变成了域中的默认值。HTTP_ACCEPT 列出客户端可以接受的多媒体类型HTTP_COOKIE任何属于当前服务器的用户的COOKIE数据HTTP_REFERER能被用户激活并到达此处的URLHTTP_USER_AGENT 浏览器类型PATH_INFO 当前U R L,不包括协议和服务器信息QUERY_STRING在U R L问号后面附加的查询信息REMOTE_ADD 阅读全文
posted @ 2011-07-31 09:22 hannover 阅读(425) 评论(0) 推荐(0)
摘要: domino中上传控件文件拆离的LS代码Dim inputAttachment As NotesEmbeddedObjectDim v_files As Variantv_files = Evaluate(|@Trim(@Replace(@AttachmentNames;TANGER_OCX_filename;""))|,doc)For i = 0 To Ubound(v_files) Set inputAttachment = doc.GetAttachment(v_files(i)) '获取文件 If Not inputAttachment Is Nothing 阅读全文
posted @ 2011-07-31 09:21 hannover 阅读(795) 评论(0) 推荐(0)
摘要: domino中实现将本地文件放入数据库中的LS代码Sub InitializeDim session As New NotesSessionDim db As NotesDatabaseDim doc As NotesDocumentDim rtitem As NotesRichTextItemDim object As NotesEmbeddedObjectSet db = session.CurrentDatabaseSet doc = New NotesDocument(db)Set rtitem = New NotesRichTextItem( doc, "Body" 阅读全文
posted @ 2011-07-31 09:19 hannover 阅读(406) 评论(0) 推荐(0)
摘要: domino文件拆离数据库,放入指定目录的LS代码: Sub Initialize On Error Goto MsgError Dim session As New NotesSession Dim doc As NotesDocumentDim FilePath As StringDim fileNames As Variant Dim objEmbed As NotesEmbeddedObjectSet doc=session.DocumentContext fileNames=Evaluate("@AttachmentNames",doc)'获取文档所有附件 阅读全文
posted @ 2011-07-31 09:19 hannover 阅读(562) 评论(0) 推荐(0)
摘要: lotus domino下使用FCKeditor,有两种插入方法。第一种(比较推荐的方法):HTML首页内容里面加入"<script type='text/javascript' src='/fck/fckeditor.js'></script>" //注意路径别写错,FCK编辑器那个文件夹在哪里就写哪里,比如domino里面我把文件夹命名为fck,放入data/domino/html里面,所以这样写。表单或页面里面用内置HTML写入<script type ="text/javascript" 阅读全文
posted @ 2011-07-31 09:18 hannover 阅读(480) 评论(0) 推荐(0)
摘要: FCKeditor是一个专门使用在网页上属于开放源代码的所见即所得文字编辑器。它志于轻量化,不需要太复杂的安装步骤即可使用。它能在asp、asp.net、PHP、JSP等多个平台下使用,并且支持大部分浏览器,所以在它出现的6年时间里,成为了最流行的文字编辑器。随着技术的发展,很多更新更方便的东西为开发者提供了更大的便利。在这种情况下,FCKeditor团队推出了一个FCKeditor的重写版本——CKEditor。新版本的CKEditor加载速度更快、更方便使用,在新版本的基础上又一个全新的用户界面,甚至可以让用户精确地自定义颜色。CKEditor经过了重写,提供了丰富而强大的集成和互动的AP 阅读全文
posted @ 2011-07-31 08:26 hannover 阅读(546) 评论(0) 推荐(0)
摘要: FLV视频格式具有本身占有率低、视频质量良好、体积小等特点,非常适合在网络上传播。国内的视频站几乎都是采用FLV格式作为解决方案。但是,在新版本的CKEditor里却没有FLV格式视频的支持。不过CKEditor却提供了丰富的接口,于是我们自己动手开发CKEditor的FLV视频播放插件。首先,配置好CKEditor和CKFinder,具体配置方法请参考我的上一篇文章:http://blog.csdn.net/ishowing/archive/2009/09/24/4589950.aspx在CKEditor目录下有专门放插件的目录plugins,我们也把插件放这个目录下,新建一个文件夹flvP 阅读全文
posted @ 2011-07-31 08:25 hannover 阅读(8816) 评论(1) 推荐(1)
上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 86 下一页