You’ll have to use the COM interface of Lotus Notes. Is it on a server? If so, you will initialize a session with the user name and password and go from there. It is quite easy really. Make sure your project has a reference to the Lotus Domino COM objects.
sample for VB – works similar in C#
Dim session As NotesSession
Set session = CreateObject(“Lotus.NotesSession”)
Call session.Initialize(“secretPassword”)
Mike Kinder
Discuss This Question: 1  Reply