摘要: One of the biggest problems when dealing with file attachments in Lotus Notes documents is that you can't detach the files on the server. This is due to a setting on the Public Names & Address Book on the server. Usually the server's administrator will not allow the use of unrestricted a 阅读全文
posted @ 2012-04-23 22:30 hannover 阅读(684) 评论(0) 推荐(0)
摘要: Formula Or Script? :Lotus ScriptEntered by:Doug HancockDesign Element in Notes:OtherDate Entered :2000-03-28Title of the Formula:LotusScript Class to Convieniently Access Design Elements%REM*************************************************************************************************************. 阅读全文
posted @ 2012-04-23 22:25 hannover 阅读(1198) 评论(0) 推荐(0)
摘要: Class DOMobj_Person gdoc_Person As NotesDocument ' ** 屬性 Property Get Document Set Document = gdoc_Person End Property Property Set Document Set gdoc_Person = Document End Property Property Get NotesID NotesID = gdoc_Person.GetItemValue("NotesID")(0) End Property Property Get No No = g 阅读全文
posted @ 2012-04-23 22:09 hannover 阅读(452) 评论(0) 推荐(0)
摘要: Approximate string matchingBinary string operationsAnonymizing remailerDocument and response tree archivingC API base classSend server console commandsWork with a database designDay of WeekRead an Excel file directly (also demo file open dialog)Full text searches on more than 5000 documentsLEI made. 阅读全文
posted @ 2012-04-23 22:06 hannover 阅读(602) 评论(0) 推荐(0)
摘要: Use "null" for checking empty Notes objects, the LotusScript NOTHING constant doesn't exist. LotusScript properties are Java methods. To convert for java, prefix all property names with Get or Set, and append a set of parenthesis, (Wayne added: however, property names preceded with &qu 阅读全文
posted @ 2012-04-23 22:02 hannover 阅读(235) 评论(0) 推荐(0)
摘要: September 27, 2010 – 10:49 am At AdminCamp last week, I talked about how to get the count of all files in the DAOS repository and it’s overall size using some batch programming in Windows and LINUX.As an alternative I proposed to use the console command “show dir -xml” to return an xml representati. 阅读全文
posted @ 2012-04-23 21:48 hannover 阅读(325) 评论(0) 推荐(0)
摘要: By Julian Robichaux, SNAPPSThis month's developer article talks about how to manipulate image files (like JPG or PNG files) with your code. While there are a number of third-party DLLs and applications you might tap into for this purpose, you'll probably find that you can do most, if not all 阅读全文
posted @ 2012-04-23 17:53 hannover 阅读(355) 评论(0) 推荐(0)
摘要: By Gary DevendorfDisplaying, sorting, grouping, and filtering live Notes/Domino data in a SharePoint "Data View" Web part is useful. However, the real value is adding calculated columns, conditional formatting, and linking the data to other SharePoint lists. Thrill your end users by combin 阅读全文
posted @ 2012-04-23 17:50 hannover 阅读(294) 评论(0) 推荐(0)
摘要: Performance-tuning Lotus Notes applications is more an art than a science, and there are probably hundreds of causes for slowness in a database. However, when you're looking at an application that's not performing well there are a handful of common places to look first. Here are 10 things th 阅读全文
posted @ 2012-04-23 17:46 hannover 阅读(246) 评论(0) 推荐(0)
摘要: Coming back to Object-Oriented programming in LotusScript after a lengthy spell programming in only JavaScript was a bit of a shock: LotusScript isso restricted! Everything has to be declared and set up in rigid class hierarchies that can't be rejigged on the fly like you can in JavaScript (whic 阅读全文
posted @ 2012-04-23 10:48 hannover 阅读(308) 评论(0) 推荐(0)
摘要: class inheritance Use platform-specific LotusScript code with classes Use version-specific LotusScript code with classes Use LSI_Info()/GetThreadInfo Use the execute command Use advanced logging Mixing Java and LotusScript Advanced LotusScript Tip #1. Understand binding There are two types of bind.. 阅读全文
posted @ 2012-04-23 10:41 hannover 阅读(402) 评论(0) 推荐(0)
摘要: The LotusScript language in Domino is very powerful once you find out that you can create custom classes with it. I´m going to write some articles about creating great helper classes, and start off with the basics of creating user classes. I am NOT going to explain why object oriented programmi 阅读全文
posted @ 2012-04-23 10:07 hannover 阅读(221) 评论(0) 推荐(1)