domino

In a LotusScript Agent how do you get the name of the current server?

In a LotusScript Agent that is being run via WebQueryOpen, how do you get the name of the current server? ...

How can I export a list of databases resident on a given Domino server?

I have a Lotus Domino server with a truly astounding number of Domino databases on it, arranged in various folders. Is there some means of exporting a list of all these databases, with their titles and creators' names, in a spreadsheet format of some kind? I have the Domino Admin and Domino Designer software, and I have or can get what...

Best practices for version control for Lotus Notes/Domino development

The title says it all - please share how you do version control for Lotus Notes/Domino development. I want to put in our SVN repository all the scripts, views, custom forms, script libraries, etc. Semi-automated methods are accepted as well (i.e. if I find a way to get all the event scripts for a form in one file, and to be able to pla...

Lotus Notes, ID files, and how things are changing in new versions (8 and up).

For those who are not aware, Lotus Notes is a cool system, which has very powerful database replication abilities, and very strong certificate management and signing. However that strong certificate usage is itself one of Notes's downfalls. When you log in to Lotus Notes via a Notes client, the password you use is not stored anywhere...

How can I programmatically determine the creator of a Domino database?

I'm using the built-in Domain Catalog database to list all the databases on a particular Domino server. I'm creating a custom view to show certain information about each database. What I'd like to have is a column that displays the creator of each database. However, if the Domain Catalog is keeping track of this information, I can't find...

How do I select all documents from the last 7 days?

I have a view selection formula SELECT @If( @Date(@Now) = @Date(@Created); @All; @False) and I want it to select all documents from the past 7 days rather than just today's. Thanks in advance for any help. ...

I need the sum of two columns in a view.

I found this code that goes through and prints out csv for both columns. I later parse and count the two columns. I want to count it here instead of printing and counting later. I've been mucking around but couldn't figure it out. Dim entry As NotesViewEntry Dim vc As NotesViewEntryCollection Dim rowstring As String Dim session As Ne...

How do I Use a Date in an Array in GetAllEntriesByKey?

Hi, I'm trying to use the current day in GetAllEntriesByKey by passing an array. The array so far looks like this Dim keyarray(2) As Variant keyarray(0) = "FF Thompson ADT" Set keyarray(1) = dateTime I would like to say this Set vc = view.GetAllEntriesByKey(keyarray, False) Here is a row of what it looks like when it work...

Can anyone offer feedback on my LotusScript agent?

Hi there I'm not a developer and so am unaware of best practices. I created this to bypass manual data copying of log data. This agent is for a single feed which I'll copy and adjust for each additional one. For the specified feed it reads the log for the last time processed and number of files processed so far today and for yesterday...

How do we get around the Lotus Notes 60 Gb database barrier

Are there ways to get around the upper database size limit on Notes databases? We are compacting a database that is still approaching 60 gigs in size. Thank you very much if you can offer a suggestion. ...

dynamic LotusScript multi dimensional arrays

I was just doing some yicky code and I thought, instead of using three dynamic arrays, as such: dim x() as string, y() as string, z() as string It will be nicer to have a 3 dimensional dynamic array. But; the help and my fumbling experiments has not revealed the method of defining them. This does not work: dim x()() or dim(,2) or d...

How to restrict a lotus view to the content of some folders ?

I am trying to make a view which selects all unread mails which also belong to a specific list of folders and subfolders. I created a view by coying the existing "view unread" one, but despite my research in the documentation and in google I am at a loss as to how to restrict the content of the view to documents in a list of folders. ...

How can I create human readable key for notes documents

For the documents stored in the database, I would like to create a human readable key to uniquely identify the document. e.g. PO20090110-001. How do I go about doing that? ...

Domino 6.5 - close document in frameset - closes app

I'm working on a Domino Client application that opens documents up in a frameset. When I click the save button it does some lotus script validation, adds to history field and etc then finally does a save: Sub Click(Source As Button) Dim validate1 As Validation Dim ws As New NotesUIworkspace Dim s As New NotesSession Di...

Additional replication options for large files on IBM Domino

Are there any products that can be used with IBM's Domino to handle the replication of large files? Preferably one that can do byte level replication. I have an environment(over 50 servers) where large files are placed and changed (bandwidth is a premium). I would like to only replicate the bytes that have changed versus the whole file...

Variable Persistence Problem (C)

Hello: I'm making a domino game and when the user adds a domino to the left, the domino is added but when the function exits the domino added is GONE. FYI: fitxesJoc (Link List) contains the dominoes of the game and is a pointer passed to the function (so that it lasts all the game) opcionesCorrectas (Domino) contains the correct cho...

Reading domino server' mailbox using C#

Hi Friends, I am making an application which will retrieve all mailboxes from Domino Server. And Display them in List. After that i want to extract( display) emails of each mailbox into another list. eg: Consider example of outlook.When we click on particular pst folder. all mails in selected folder get displayed. Kindly send me code...

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

Lotus Domino web view - should only show current user's docments - but shows more?

I'm working on a Lotus Domino Web application and I have a view that should only show the current user's documents. I know this is not the best for the server because it has to keep calculating this, but it is a requirement... This is the view selection formula that I'm using: SELECT (Form="Atom Request" | Form="AtomRequest") & @Nam...

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