Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
292 views

How to differentiate “Note” and “Mail” item in Lotus notes? Using Domino.dll

I have a Nsf file in which in one of folder there are some mail and notes items. I am differentiating each item with "form" property. In case of mails form type is "memo" but in above scenario Notes ...
3
votes
2answers
2k views

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

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#
2
votes
1answer
199 views

Getting “” value of Location in Lotus Notes Calendar

I am trying to read Location of Calendar item in Lotus Notes. When i check in Document Properties manually.I am able to view the value, But when i read it via using Domino.dll in am getting "" value. ...
2
votes
1answer
2k views

Why might NotesSession.GetDatabase() return null?

I'm trying to open names.nsf in code. The piece of code has been working for a while but suddenly, I'm getting null. Any idea why? I don't seem to be getting any errors and I don't know how to work ...
2
votes
1answer
561 views

Extract lotus notes mails in RFC822 using Domino.dll

I want to send my Lotus Notes mails in RFC822 format. How can i do it using Domino.dll or any other api in c#.
2
votes
1answer
475 views

Is Interop.Domino dll thread safe?

I am using Interop.Domino dll version 1.2 in c# application, and using multithreading to access multiple NSF file at same time by creating new session for each thread created (Max 5 threads at a ...
2
votes
1answer
790 views

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

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)
2
votes
4answers
2k views

.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?
2
votes
1answer
580 views

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?
1
vote
1answer
58 views

How to use the replicate method in Lotus Notes for a POP account

Has anyone managed to use the replicate method in Lotus Notes? I am trying to get Lotus notes 7 to get new emails by running the below method using the Domino Interop in C#. replicated = ...
1
vote
2answers
388 views

Programtically receive new emails using Lotus Notes

Is there a method or any way to receive or get new emails from the server for the Lotus Notes Domino object in C sharp? When looping through the Inbox view all I get is existing emails and not new ...
1
vote
2answers
2k views

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 ...
0
votes
3answers
772 views

Lotus Notes: RichText Item

Okay, here's the deal. I am using C# with the Domino API. I have some rich text data that I want to insert into a lotus notes rich text field. NotesDocument.ReplaceItemValue just inserts the text as ...
0
votes
1answer
560 views

Lotus Notes Interop.Domino.dll for 64 bit OS

I have created a simple application of reading mail properties from a nsf file using Interop.Domino.dll, things works fine for 32 bit OS but when i attempt to run the same application under 64 bit OS ...
0
votes
2answers
467 views

How do I return all conflict documents from a Notes Database?

I want to get all conflict documents from a Notes database. So far, i've got this: Domino.NotesSession notesSession; Domino.NotesDatabase notesDatabase = this.OpenDatabase(out notesSession); ...
0
votes
2answers
234 views

Does anyone know of a schema definition for Person documents in names.nsf?

I'm writing a utility to update person documents in names.nsf. I'm using a C# program using Interop.Domino. I'd like to validate the input but I can't find a document which describes the schema for ...
0
votes
1answer
198 views

Recurrance Calendar Issue in Lotus Notes

I am creating a Daily Reccurrance pattern in calendar items. But there is a issue as before clicking "save and Send Invitations" button, but in the Document Properties field i am able to view the ...
0
votes
2answers
1k views

Maximum number of memory segments that Notes can support has been exceeded

I am using Domino.dll to access a NSF file in C#.NET 2.0 I am using multiple thread to access 4 NSF files at a time, its working fine for small NSF files, but if i try to access large NSF files i get ...
0
votes
2answers
210 views

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

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 ...
0
votes
1answer
112 views

c# : Not getting “Usertype” for RegisterNewUser() function

I am not getting "user type" for below function: (using Domino.dll in C#) _NotesRegister.RegisterNewUser(pLastn,pIdfile,pServer,pFirstn,pMiddle,pCertpw,pLocation,pComment, ...
0
votes
2answers
781 views

How to Edit NSF file using c#?

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 ...
0
votes
3answers
876 views

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

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 ...
0
votes
1answer
459 views

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

I trying below code: NotesSession = _lotesNotesSession.GetDatabase("", NsfFile, false); _NewDatabase = _NotesSession.CurrentDatabase; ( Note : Showing "Not Implemented" exception.) ...
0
votes
1answer
595 views

How to access Groups in Lotus Notes using C#

I am trying to access Groups from Lotus Notes using C#.
0
votes
3answers
4k views

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

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 ...
0
votes
3answers
710 views

“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 ...
0
votes
2answers
595 views

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 = ...
0
votes
2answers
943 views

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

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".
0
votes
1answer
757 views

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"
0
votes
3answers
636 views

Dlls to access Notes and Domino Server Database

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 ...
0
votes
2answers
2k views

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 ...
0
votes
3answers
2k views

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