lotus-notes

Save email message as eml using C# in Lotus Notes

左心房为你撑大大i 提交于 2020-01-23 11:14:46
问题 I need to export (save to) hard drive my Lotus Notes emails. I figured out the way how to save attachments to HDD, but I can't figure out the way of how to save the whole email. The code below shows how I export attachments. Can you suggest how can I modify it to save emails? PS- I am new to programming. using System; using System.Collections.Generic; using System.Linq; using System.Text; using Domino; using System.Collections; namespace ExportLotusAttachments { class Class1 { public void

Convert embedded pictures in database

时光怂恿深爱的人放手 提交于 2020-01-22 15:38:07
问题 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

headless designer and ODP .project file

夙愿已清 提交于 2020-01-17 06:42:13
问题 we are testing a setup to automate building of NSF's using headless designer. when a developer pushes a change to a repository on github ultimately this will result in an update of an NSF that resides on a Domino server. local odp -> github -> local nsf with headless designer -> replace design nsf on domino server however we noticed that the process stops sometimes. as far as we can see headless designer cannot "copy" (or translate) the design elements from the ODP into a new local NSF. so

Reading domino server' mailbox using C# [closed]

吃可爱长大的小学妹 提交于 2020-01-16 11:59:30
问题 It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 7 years ago . I am making an application which will retrieve all mailboxes from Domino Server. And Display them in List. After that i want to extract( display) emails of each mailbox into another list. eg: Consider example of

VBA-Insert body of email above signature using Lotus Notes

此生再无相见时 提交于 2020-01-15 09:19:13
问题 What I am trying to achieve is very simple, insert the body of an email above the signature in lotus notes. The code I have in vba, when run, opens a new email window in lotus notes pastes in the Subject, SendTo and Body fields. Everything works perfectly, but when the body is inserted it puts the text below my signature. I've done a ton of digging to try and find a solution, but haven't found anything that has worked just right. A few posts I've found suggest removing the signature, pasting

Can I use Lotus Notes to send mail?

╄→гoц情女王★ 提交于 2020-01-15 07:44:10
问题 I have to code an app that at some point in time will have to send some reports using Lotus Notes. My questions are : Can I send mail through the Lotus Notes client, or something related to Lotus Notes ( a command line tool maybe? )? If so, where could I find information related to this? I would prefer not having to do it in C/C++, but if no other options' present, that would do. How can I find out the server's address? The GUI is not intuitive, and I can't find the server address. The server

I need the sum of two columns in a view

旧城冷巷雨未停 提交于 2020-01-15 04:57:41
问题 I found this code that goes through and prints out csv for both columns. I later parse and count the two columns. I want to count it here instead of printing and counting later. I've been mucking around but couldn't figure it out. Dim entry As NotesViewEntry Dim vc As NotesViewEntryCollection Dim rowstring As String Dim session As New NotesSession Dim db As NotesDatabase Set db = session.CurrentDatabase Dim view As NotesView Set view = db.GetView( nameofview ) Set vc = view.AllEntries Set

Trying to get lotusscript json reader

早过忘川 提交于 2020-01-14 03:24:06
问题 Through LotusScript I am consuming a webpage that returns json values and I have been unable to find any library out there for lotusscript, other than ls.snapps.JSONReader from openntf. It works, but documentation is limited. I am having trouble reading a nested array in the value list. I was able to get it to work in java using the ibm.common.utils.... library, but was having trouble with mac client and another library (javax.swing.*) so I switched to LotusScript. I am hoping someone else

Dynamically create java class for a Lotus Notes form

不羁岁月 提交于 2020-01-07 02:18:24
问题 I want to migrate Lotus Notes database to salesforce. using domingo I am able to retrieve the forms , form fields ,documents and etc. As soon as I get the form with its fields & their datatypes, I want to create a class for this form. Like this I want to create a class for each form. Each document can then be made as an instance to this class. I am looping the database to get forms and then looping forms to get their fields(using for loops), now is there a way to create a class for this form

Is it possible to pass arguments in lotus notes dialog box

强颜欢笑 提交于 2020-01-06 21:39:54
问题 I have one form with two fields called "Field 1" and "Field 2" and one action button called "check". On click of that action button, i want to open dialog box with three fields which should get auto populate based on Field 2 value. How to achieve it? Appreciate if anyone helps me. 回答1: Yes, it is possible. There's a document parameter for NotesUIWorkspace.DialogBox() . Use this document to pass parameters to your dialog. UPDATE Assume you have a form with name "MyDialogForm" to represent your