interop-domino

C#, Lotus Interop: Getting Message Information

I'm using Interop.Domino.dll to retrieve E-mails from a Lotus "Database" (Term used loosely). I'm having some difficulty in retrieving certain fields and wonder how to do this properly. I've been using NotesDocument.GetFirstItem to retrieve Subject, From and Body. My issues in this regard are thus: How do I retrieve Reply-To address...

How to create mailboxes in Domino Server?

I want to create a mailbox for each user in a Domino server. In order to maintain different mailboxes for different user. And storing their respective mails in it. example: User: A Mailbox: Amailbox storing mails of user A ...

Dlls to access Notes and Domino Server Database.

Hi, I need to create an application using C# such that i can access all the user's mailboxes existing on Server. So kindly provide me the API which will allow me to access each mailbox( nsf files) of each user stored on the Domino Server. Basically i am looking for an API by which i can just provide the Domino Server name through whic...

How to list mailbox from Domino Server using LDAP in C#

Can anyone suggest me some link where i can get some idea i.e how to list mailbox using LDAP using C# I am using "Interop.Domino.dll" ...

Reading Lotus Notes & Domino Mailboxe using Interop.Domino.dll

I would like to populate the list of mailboxes from "Mail" folder of Domino from c# using the above API (Interop.Domino.dll). I have no problems connecting to Notes, accessing the database.It is easy to access all nsf files but i want to access only only nsf files in Mail Folder i.e Mail files. I am using below code: w...

In C# Get All the .nsf files(Notes Database) from \data\notes directory and populate it in a Listbox

Hi In C# Get All the .nsf files(Notes Database) from \data\notes directory and populate it in a Listbox or combo box or in Tree View. I am using "Interop.Domino.dll". ...

Accessing mails from "mail\ServerMailFile.nsf" file from Domino Server using "Interop.Domino.dll"

I can open contacts,to-do list from "mail/usermail.nsf" file. But unable to open or access mails from it. I am using below code to access "calender": _serverDatabase = _lotesNotesSession.GetDatabase("", "mail\ServerMailFile.nsf", false); NotesView LotusNotesView = _localDatabase.GetView("Calendar"); Is there any similar way to acces...

"User CN={user's name}/O={organisation name } cannot open database {path to databasename.nsf}"

I am getting this error when i am trying to access mail file(mail/usermail.nsf) of user ( on different machine) using C#. I am using "Interop.Domino.dll". Is this happening because of same user name and organization name? But i am able to access local User NSF file (user configured on same machine where Domino server installed) where ...

How to access "nsf file" if Lotus notes not installed on your machine?

Hi All, Currently i can access nsf all nsg files.But once i uninstall Lotus Notes form my machine program doesn't work. I am using "Introp.Domino.dll". Language: C# ...

How to get list of Domino Servers on network using .NET?

I want to get list of Domino Servers on the network, and accordingly login into particular server. I am using C# / Interop.Domino.dll Any ideas how to do this? ...

How to access Lotus Notes's Notebook items using C# ?

Hi, I am able to access Mails,Calendars e.t.c from Lotus Notes. But i am not getting how to access Notes (Notebook). I am using "Introp.Domino.dll". ...

How to check name of Domino Server to which lotus notes is configured? using C#

Hi, I am trying to login Domino server. For that i am taking Lotus Notes Password and Domino Server Name from user. if (notesPassword == "" && serverName == "") { MessageBox.Show("Please enter the server name !! "); return; } else { if (connectToDomino(notesPassword, serverName)) { MessageBox.Show("Connection Esta...

.NET and Lotus Notes Interop.

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? ...

How to check Mail Read or Unread Property (Lotus Notes) using C#.

Hi, I want to check mail read and unread property using C#. i.e want to check whether mail is read or not. (using Domino.dll) ...

How to access Groups in Lotus Notes using C#

Hi , I am trying to access Groups from Lotus Notes using C#. ...

Problem in getting UnprocessedDocuments and CurrentDatabase using C# (domino.dll)

Hi, I trying below code: NotesSession = _lotesNotesSession.GetDatabase("", NsfFile, false); _NewDatabase = _NotesSession.CurrentDatabase; ( Note : Showing "Not Implemented" exception.) _UnreadDocCollection = _NewDatabase.UnprocessedDocuments; Here i am trying to get list of Read and Unread Mails From Nsf File. Explanation: When i a...

How to get Lotus Notes Password (on local machine) using "Interop.Domino.dll" (C#)?

Hi, I am making one application where i am reading mails from Lotus Notes. I have made this application interdependent of Domino Server. But in this case.If user's Lotus Notes's is configured with Domino server.It shows pop-up for password. I don't want to show pop-up.And don't want to add text box into UI. Is there anyway to get NSF...

How to Edit NSF file using c#?

Hi, I want to programaticaly change some values to NSF item and then want to save it.(i.e to edit NSF File and then save the editions) for example: I want to set Sender name of all mails to "[email protected]".(Using Domino.dll). Solution I tried: (Swaping of To and From values) String Temp_From = ((object[])docInbox.GetItemValu...

c# : Not getting "Usertype" for RegisterNewUser() function

Hi, I am not getting "user type" for below function: (using Domino.dll in C#) _NotesRegister.RegisterNewUser(pLastn,pIdfile,pServer,pFirstn,pMiddle,pCertpw,pLocation,pComment, pMaildbpath,pForward,pUserpw,pAltName,pAltLang,Usertype); ...

How to programatically add contents(mail,contacts e.t.c) to NSF File using c#?

Hi, I have created some Domino Server Users. And Now want to progaramaticaly add content to it using c# and Domino.dll. Note: i did not find any way to manually add content (mails,calendar) of one nsf to another nsf file. ...