Hi All,
I am accessing contacts of all user's from Domino server.
But contacts of all user's are saved on single file ("names.nsf") and i want to display it user wise.
Can anybody tell me how to differentiate contact list of different user's?
...
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#
...
I am having a problem with an a lotus 8 agent running on a server.The agent tries to fetch data form a sybase database (using Sybase 11 ODBC driver).I can run the same agent from a cleint machine with no error, but when the agent runs on the server it ends with the following error. -> LS:DO- ODBC could not complete the requested operatio...
I am looking for the possibility to copy all (backup) my address book entries into plain text, or CSV, or XLS from Lotus Notes mail client. My aim is to later copy these details into Outlook.
Is it possible. I haven't done lotus scripting before. But I am going through the reference links. If possible provide links or pointers for accom...
I have a VBA function that initializes a lotus notes session, creates a document and mails it. It also accepts as an optional parameter a NotesRichTextItem which I append to the body of the email.
However, I am getting the error message "All objects must be from the same session". How do I 'import' this NotesRichTextItem into my sessi...
Hi,
I am looking for NSF file structure.
Can anyone send me link where i would find information about it.
...
I am trying to sync up a SQL Server table with a Lotus Notes database. I have set up the NotesSQL ODBC driver and have been able to insert, update and select from the notes database form using the ActiveX Script Task in DTS. Everything works well until I try to insert Chinese characters into Text field in the notes database. After insert...
How do you copy the html code of a link to the clipboard and parse it as a link in Lotus Notes?
For example, in Javascript put <a href='http://www.stackoverflow.com'>StackOverFlow</a> into clipboard, and then parse it as a link in Lotus Notes while writing a new email. It should only show a link as StackOverFlow in new message....
Hi, i just wanted to know how can i convert text and rich text fields in a document uploaded in a database to html fields.
...
I am accessing mail from Lotus notes.
And in order to access "Inbox" i am using below code:
_notesDatabase = _lotusNotesServerSession.GetDatabase(LotusNotesServer, "mail\\" + nsfName, false);
NotesView inbox = _notesDatabase.GetView("($Inbox)");
Similarly for "Drafts".
But here i am specifying name of each view in GetView method.
Wh...
Hi,
I am want to access attachment of particular mail in Lotus Notes.
I am getting Attachment name with $File.
But i want to extract this attachments and want to save it in user specified path.Using C#.
...
HI all,
This is in Notes 8.5 environment .
I just wanted to know how to attach an email to another email as real attachment not a "Document Link".
I intended to attach an email, so I drag & dropped an email to another email's body but this turned out to be a "Document Link". This is an issue when I deleted the original attachment(an ...
I am accessing Mail files from Lotus Notes.
For example "Inbox" but Inbox can again contain sub-folders.
So in order to differentiate i am comparing Parent Id of each folder.
...
I am accessing contacts of all user's (client machines configured on Domino Server).
But problem is that contacts of each user's are stored on Local Machine only ( i.e on names.nsf).
Can i maintain contacts of all user's on Domino Server? As these user's are configured with Domino Server.
What is use of "names.nsf" on Domino Server?
...
In one of post:
http://stackoverflow.com/questions/1357612/how-to-get-list-of-views-from-mail-in-lotus-notes-using-c
I was asking about getting list of view.
I am getting list of views.But now i want to filter them.
As i want only Inbox,Outbox,Draft..e.tc. (containing mails).
...
I am getting contents of all views (Folders).Like Inbox,Calendar,ToDo e.t.c.
As mentioned in Title i want to access contents of Folders created my user.
For Example "Folder1" and sub-folder "ABC"
I can do it as:
NotesView folder = _notesDatabase.GetView("(Folder1)");
NotesDocument docFolder = folder.GetFirstDocument();
For sub-fol...
I created a program a while ago using C# that does some automation for a completely different program, but found that I need to access data from a Lotus Notes database. The only problem is, I can only seem to figure out how to open the database by the server's name (using session.GetDatabase())... I can't figure out how to open it by Rep...
I am trying to get Data Type (Body Format) of Mail,Calendar e.t.c. Body.
Getting Body content as:
String Body = (string)((object[])docInbox.GetItemValue("Body"))[0];
or
String Body = docInbox.GetFirstItem("Body").Text;
I tried it using:
String bodyFormat = ((object[])docInbox.GetItemValue("Body"))[0].GetType().ToString();
But i...
I have notes document with rich text field. In this RTF there is attachment placed. I would like to redirect (print) this attachment contents in Domino Agent accessed from web browser.
I know I can save NotesEmbeddedObject on disk and then read it and post... but this does not satisfy myself. I am looking for in-memory solution.
...
Hi,
I am trying to access Attachment names form "$File" (Lotus Notes).
NotesView inbox = _serverDatabase.GetView("($Inbox)");
NotesDocument docInbox = inbox.GetFirstDocument();
NotesItem file = docInbox.GetFirstItem("$File");
String fileType = file.type.ToString();
( getting fileType value "ATTACHMENT" for mail containing attachm...