lotus-notes

Source Control in Lotus Domino Designer

烂漫一生 提交于 2019-12-03 18:03:41
We have been using Domino on a large project for years without any real source-control (other-than server backups). So, I was rather pleased when I noted the latest Designer 8.5.3 has potential integration with SVN. I was unable get SVN working just by following the original instructions for as already noted on Stackoverflow the update sites have moved. The solution posted on OpenNTF , only half worked, with Domino still croaking at GEF, Mylyn and some other missing plugins. After finding and installing them, I still do not seem to have source-control integration. What I have now is the

Extracting email messages from a Lotus Notes NSF file using Java API

拈花ヽ惹草 提交于 2019-12-03 17:28:39
I'd like to use the Java API (Notes.jar), and I'm running a Windows box with Lotus Notes 8.5 installed. I know nothing about Lotus Notes, and I only need to do this one narrow task: extracting email messages from an NSF file. I want to be able to iterate through all the email messages, grab the metadata (From, To, Cc, etc) or the raw MIME if available. I've googled around quite a bit, but I haven't found anything straightforward without requiring some significant Lotus Notes domain expertise. Some sample code to get me started would be greatly appreciated. Thanks! UPDATE: I found an open

Convert embedded pictures in database

不打扰是莪最后的温柔 提交于 2019-12-03 16:47:42
I have a 'small' problem. In a database documents contain a richtextfield. The richtextfield contains a profile picture of a certain contact. The problem is that this content is not saved as mime and therefore I can not calculate the url of the image. I'm using a pojo to retrieve data from the person profile and use this in my xpage control to display its contents. I need to build a convert agent which takes the content of the richtextitem and converts it to mime to be able to calculate the url something like http://host/database.nsf/($users)/D40FE4181F2B86CCC12579AB0047BD22/Photo/M2

Lotus Notes Diff Tool

限于喜欢 提交于 2019-12-03 15:11:33
Is there any diff tool for Lotus Notes which allows to compare scripts, design elements and documents? If all else fails (and by "all else" I mean the often ridiculous corporate procurement system) you can always do a an export to DXL (or a Design Synopsis for code alone) and use any decent text editor with a diff function. It's not TeamStudio Delta, but it will get you where you want to go. I see this is an old question, and most of the other answers are a little outdated now, so I thought I would add some hopefully valuable information for those who should stumble upon this now. In Domino

.NET and Lotus Notes Interop

社会主义新天地 提交于 2019-12-02 19:39:29
I've Lotus Notes database file (.nsf) at some location, let's say: http://intranet.mycompany.com/somewhere/data.nsf Is it possible in any way to read from that location using any .NET language? Konamiman Take a look at these resources: http://www.ibm.com/developerworks/lotus/library/domino-msnet/index.html http://www.codeproject.com/KB/cs/lotusnoteintegrator.aspx http://www.builderau.com.au/architect/database/soa/Create-an-ODBC-connection-to-a-Lotus-Notes-database/0,339024547,320282240,00.htm You can use the ReadViewEntries URL option and that returns data as XML --> http://www-12.lotus.com

@ReplaceSubstring doesn't display value as expected

为君一笑 提交于 2019-12-02 14:23:22
问题 I have this formula in one of the columns in my view in Lotus notes database. However, it does not change the value of the field "EmployeeName" in the view and still displays the original name. Example: Original value : Franco Martínez, José Ramó Expected output : Franco Martinez, Jose Ramo value1:="i"; value2:="e"; value3:="o"; optionList := value1:value2:value3; aliasList := "í":"é":"ó"; @ReplaceSubstring(@Text(EmployeeName); aliasList; optionList) 回答1: As the formula is absolutely correct,

Opening an Excel file attachment located in a Lotus Notes Database through VBA

允我心安 提交于 2019-12-02 13:48:11
问题 I am trying to automate the opening of an excel file located in a jobs database within lotus notes. I have been able to open up a window in lotus notes using the url, but I can't open the file located there automatically as it is an attachment. This is the vba code I am using to open the link: Application.ActiveWorkbook.FollowHyperlink Address:="Notes://URL", NewWindow:=True What is the proper way to do it? 回答1: You'll need to use VBA to access Lotus Notes via COM. Then you can get at the

NotesDatabase Search condition

白昼怎懂夜的黑 提交于 2019-12-02 10:59:13
问题 With this code: Set col = db.Search("Form=""formname"" & id=212", time, 0) I explicity give the search function 212 for example, but what if I want to give a variable dim var as Integer How would my search look like, beacuse this doesn't work: Set col = db.Search("Form=""formname"" & id=var", time, 0) 回答1: Set col = db.Search("Form=""formname"" & id=" + Cstr(val), time, 0) should work. Cstr() converts the integer value to a string. 来源: https://stackoverflow.com/questions/23981044

@ReplaceSubstring doesn't display value as expected

自作多情 提交于 2019-12-02 09:16:34
I have this formula in one of the columns in my view in Lotus notes database. However, it does not change the value of the field "EmployeeName" in the view and still displays the original name. Example: Original value : Franco Martínez, José Ramó Expected output : Franco Martinez, Jose Ramo value1:="i"; value2:="e"; value3:="o"; optionList := value1:value2:value3; aliasList := "í":"é":"ó"; @ReplaceSubstring(@Text(EmployeeName); aliasList; optionList) As the formula is absolutely correct, the issue has to be somewhere else. You already checked, that the field is summary, so this cannot be the

NotesDatabase Search condition

混江龙づ霸主 提交于 2019-12-02 08:22:05
With this code: Set col = db.Search("Form=""formname"" & id=212", time, 0) I explicity give the search function 212 for example, but what if I want to give a variable dim var as Integer How would my search look like, beacuse this doesn't work: Set col = db.Search("Form=""formname"" & id=var", time, 0) Set col = db.Search("Form=""formname"" & id=" + Cstr(val), time, 0) should work. Cstr() converts the integer value to a string. 来源: https://stackoverflow.com/questions/23981044/notesdatabase-search-condition