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
Last Wiki Answer Submitted: July 7, 2009 8:51 pm by SlikTool1,830 pts.
If you live outside the United States, by submitting your email address you consent to having your personal data transferred to and processed in the United States.
323