lotus-notes

System.Net.Mail.MailAddress Validation

I am working with the lotus notes smtp server and i need to send mails to lotus notes mail groups, which are not standard mail addresses, for example: mail.To.Add("#Team Mailing List"); I know that the smtp is able to accept this, but how can i make .net play ball, anyone tried this? I want to avoid using the domino interop if possib...

Excel VBA - out of memory error (runtime 7)

Hey guys, I am getting a very weird error when using VBA in excel. I am using LotusNotes Automation libraries to loop through a view and write everything to cell. Here is my code (variables of non-interest are removed as I know they are not causing the problem) Public Function TimeCh() Set session = New NotesSession 'create a new se...

How to check/uncheck a checkbox with javascript in lotus notes

How to check/uncheck a checkbox with javascript in lotus notes? I´ve tried a lot of different javascript codes but none worked.... the input type checkbox is insidea form called form1.. thanks ...

jquery dialog without a form

I have two problems. I am developing web application in Lotus, and Lotus likes to take control of the situation and insert code where it sees fit. I am using Jquery UI to open a modal dialog window. If I simply open and close the dialog, then try to submit the parent form, I get a __click is not an object. When I took a closer look a...

Allow a user to select a folder path in Lotus Domino

Hi Everyone, What is the best way to allow a user to select a folder path in domino? Help would be greatly appreciated. Regards Stina ...

Lotus Domino Designer import 3rd party jar file

I'm developing custom Agent for LotusNotes 8.5. I'd like to use iCal4j jar to convert Calendar issue to ICS format. Question is: how to import coresponding jar in Lotus Agent ?? Now is written when compile: package 'net.fortuna.ical4j.model' does not exist. ...

Insert inline image into Lotus Notes message

I've been able to send emails using Lotus Notes and VBA and Python using the COM API like this: http://stackoverflow.com/questions/1027400/can-i-use-lotus-notes-to-send-mail My question is how can I insert an image inline with the body text (not as an attachment) in a programmatic way (equivalent to the Edit | Paste Special)? I haven't...

Getting empty values for "DateComposed" and "timeComposed"

I am trying to read "DateComposed" and "timeComposed" values of Notes Discussion Database using Domino.dll. While reading I am getting "" for both of them. Sample code: DateTime DiaryDate = (DateTime)((object[])docJournal.GetItemValue("DateComposed"))[0]; DateTime dtTimeCreated = (DateTime)((object[])docJournal.GetItemValue("tim...

Lotus Notes Java app can’t find notes.ini

Both the systems described are Windows XP with Lotus Notes 8.5. I have a Java app (sample code below) that uses notes.jar to interact with Lotus Notes. The app works fine on a system that has notes.ini in the Lotus install dir of c:\Program Files\Lotus\Notes and the user ID file is in c:\Program Files\Lotus\Notes\Data. The user has to t...

Sending formatted Lotus Notes rich text email from Excel VBA

While trying to use the hints in your answer at http://stackoverflow.com/questions/686384/sending-formatted-lotus-notes-rich-text-email-from-excel-vba I could do almost everything I needed: write multiple lines with data from a database of mine, formatting the body by mean of html code, with links and formatted text. I also need t...

How to get Internet Address from Lotus Notes

A Notes calendar entry has an Item called "Chair", which is a distinguished name along the lines of "CN=My Name/OU=Something/O=SomethingElse". How do I convert this to an SMTP address such as "[email protected]"? I tried looking at NotesName which has an Addr821 property, but this only seems to work if you give it an SMTP address - wh...

How to connect and synchronize Lotus Notes calendar with Windoes CE custom application

We are developing custom appication on Win CE and we need to synchronize data on device with calendar of selected user. thanks for help ...

Lotus Notes/Domino Designer 8 - Disable shared action refresh

I am working in Lotus Notes 8 using the Domino Designer to update a shared action under: Shared Code >> Actions Every night when the database refreshes my changes are being wiped out. Other files have a do not refresh option in them but, the actions do not. Does anyone know how I can update the file to not be over-written ...

Notes createDxlExporter() API not working

Hi, I am writing java application which will export the design time data of forms and views of a Notes application in DXL XML format.So I am using Notes java API createDXLExporter to export. But it is not returning any data about forms or views. Below is the code snippet NoteCollection nc = database.createNoteCollection(false); nc.setS...

send appointment invitation to lotus notes 8.5 clients via c#

hi there,i am using Interop.Domino.dll and able to send mail via c# code to lotus notes 8.5 users. now i want to send appointment invations to users via c# code. here is my code. oNotesDocument.ReplaceItemValue("Form", "Appointment"); oNotesDocument.ReplaceItemValue("AppointmentType", "3"); // meeting ...

Does anyone know how to send an email with IBM Lotus Notes from a .NET application?

I am looking for a way to access Lotus Notes to get the program to pop a new email for me to enter recipient, subject, and body information. Does anyone know of a way to shell a command to Lotus Notes to get the email window to open? I am trying to do this using c# ...

Link to a Lotus Notes email from a web app

I have a web app that can bring up a series of cases. Sometimes, a user may want to connect a case with a particular email in Lotus Notes. I use the term 'connect' loosely -- I'm not sure exactly what I want because I don't know all of my options, but I'm looking for some way to say "this case right here goes with that email over there."...

Why doesn't this e-mail display correctly in Lotus Notes?

I'm building an e-mail with PHP, following the RFC as closely as I can, and this appears to work in other clients (gmail, outlook), but not in Lotus Notes. The client sees everything including the first boundary and below as raw text. Any ideas what I'm doing wrong? Delivered-To: to-address Received: by 10.220.179.196 with SMTP id br4...

How to enable copy/paste formatted text from Lotus Notes to TinyMCE?

This question was previously posted to the TinyMCE HowTo Forum with no responses. Here's hoping that someone out there has encountered (and solved) this issue. The question: Is there some way to enable correct copy/paste of formatted text from a Lotus Notes email directly into TinyMCE? The scenario: A rolling comments system on a web s...

Lotus Notes/Domino Designer 8 - Get User Name from E-mail

I have a bunch of users I am adding to conference. They are contained both in a user's address book and on the Notes server/main company address book. Once I have the e-mail address of a user, is there a way to look up their user name? ...