lotus-domino

Lotus Notes - scripting the creation of design element

I have a Lotus Notes application which actually consists of a template with all the required forms, views and agents needed. It also requires some design elements (a custom form and a view for our own type of documents) from this template to be copied over to the mail template, so after the regular refresh all users have it. The applica...

Detect and switch Domino servers from within VBA

We are having issues with our mail server which have highlighted a weakness in a system that I set up a couple of years ago to email departments on completion of reports. The code that currently sets up the mail server is hardcoded as Set objNotesMailFile = objNotesSession.GETDATABASE("XXX-BASE-MAIL-04/CompanyName", dbString) The pro...

Opening mail.box file in Domino Server

I want to programmatically access Mail.box file in Domino Server. Using C#. Before opening it i was to see it's contents. My question is that how can we open file with .box extension? Especially Mail.box file in Domino Server. ...

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

Listing inbox,outbox,calenders,journal e.t.c. from nsf file (eg: mail/usermail.nsf) using C#

Hi All, I am working on a application where i have to list all user mail NSF file in tree view. Currently i can list all NSF files. Next step for me is to list(fetch) in-box,outbox,calenders,journal e.t.c. from NSF file (e g: mail/user-mail.NSF).using C#. ...

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 differenciate different user's contact list in "names.nsf" of Domino Server?

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

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 contacts of user's configured on Domino Server?

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

How to set different web authentication mode for different database in Lotus Domino

Disclaimer: I'm not a Notes admin, I just wrote the application :), and I try to help our client to use it. We provide a simple database with one agent to accept and process HTTP POST messages from Internet. The Domino server where this database is going to be installed is configured for Single SignOn authentication for web access. Is...

Plugin inside Sametime with Lotus Notes Classess - The Whole Story

It's gonna be a long read so Thanks for being patient :). I have been trying to develop a plugin to be executed inside Lotus Sametime. The idea of this plugin is to extract the calendar entries for a given date and then display it in sametime. Simple isn't it, i thought so too. Apparently I was wrong and grossly misunderstood the JVM ve...

@DBColumn in Lotus Notes

Hi everyone, I've been tasked with learning Lotus Domino Designer - not sure what I did in a previous life, but it must have been pretty bad... - and was wondering how to do a lookup on a database to get some values for selections. As this information could potentially be used in a lot of the applications, I'd prefer it only to be in t...

Move Database To Another Folder

How can I relocate database from one folder to another on the same server while the server is running? ...

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

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

XPage: collection variable undefined in javascript for link attribute in repeat control

I have encountered strange problem with collection variable in repeat control (iterating NotesDocumentCollection). Collection variable named to "doc" to access row data (type of NotesDocument). If I put computed field control into repeat, binding doc.field works. If I use Javascript, I can access variable "doc" in it and compute content...

Help retrieving attachments from a lotus notes email using notes api and vb.net

I am trying to retrieve an attachment from a lotus notes email using the EmbeddedObjects array off of a NotesDocument object. In my test, I've set up an email with an attachment and am trying to process it. The HasEmbedded property of the NotesDocument object is returning true however the EmbeddedObjects array of the NotesDocument obje...