Questions tagged [lotus-notes]

Tag for programming questions related to Lotus Notes & Domino

It is appropriate to also include specific language tags when asking questions about communicating with Lotus Notes from those languages, for example using .NET or VBA to send an email, or to pull data from SQL into Notes.

3497 questions
1
vote
2 answers

Automatically move sent mail to inbox in Lotus Notes

In Lotus Notes when you send an email it can automatically put the email in your "Sent" view. But the "Sent" view is special in that you can't move messages "out" of the sent view to some other folder. You can "copy" messages into another folder…
DH4
  • 4,095
  • 3
  • 20
  • 16
1
vote
4 answers

"Could not open the ID file" in Websphere

The following code I can run without problem within Tomcat, Session session = NotesFactory.createSession((String)null, (String)null, "password"); but in Websphere, I got exception below: SystemErr R NotesException: Could not open the ID…
Matt
  • 1,671
  • 5
  • 23
  • 34
1
vote
1 answer

Posting an Excel Chart into Lotus Notes Email

Ok, just getting into VBA and I have been handed a doosie. I am trying to get a chart, from a worksheet in Excel, placed into Lotus Notes. I have tried both attaching it as a richText format (as you can see from the areas commented out) and as a…
William
  • 405
  • 6
  • 11
  • 26
1
vote
3 answers

How can I check if Upgrade Pack is installed in the Lotus Notes client?

Lotus Notes client 8.53 with FPx and Upgrade Pack 1 are installed to clients using a package management solution. I need to check that it works and actually get the Upgrade Pack installed. The Fix Pack install removes the listing for Upgrade Pack in…
jBoive
  • 1,219
  • 1
  • 14
  • 40
1
vote
2 answers

Refreshing a Lotus Notes folder

I'm working on a Lotusscript at the moment which places a menu of actions on the $Inbox (and thereby any folders derived from that design). This action menu has several items with "Hide action if formula is true" selected. The logic behind all of…
Adrian
  • 2,825
  • 1
  • 22
  • 32
1
vote
4 answers

Retrieve Lotus Notes contact information using contact ID in c#

Im developing a tool that needs to access to the names.nsf database inside IBM Lotus Notes, and, using the lotus contact ID (Employee ID) (this id will be provided by the user), retrieve the full information of the person (Name, Position, Phone…
1
vote
2 answers

How to differentiate "documents" of Folders created by user in Lotus Notes?

I am able to access User Made Folder as: NotesView folder = _notesDatabase.GetView(folderName); NotesDocument folderDoc = folder.GetFirstDocument(); But problem is that it can consist of "Mail","Calendar" and "To Do". I am not able…
Preeti
  • 1,386
  • 8
  • 57
  • 112
1
vote
1 answer

Simultaneous Lotus notes server-side agents

In my Lotus Notes workflow application, I have a scheduled server agent (every five minutes). When user's act on a document, a server-side agent is also triggered (this agent modifies the said document, server-side). In the production, we are…
John Bautista
  • 1,480
  • 3
  • 29
  • 60
1
vote
2 answers

How to get Attachment value from "$File" Item? using C# (Lotus Notes)

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 =…
Preeti
  • 1,386
  • 8
  • 57
  • 112
1
vote
2 answers

sum amounts from editable fields to a computable field dynamically in Lotus Notes

We have designed Lotus Notes forms, where we are displaying the data from the external system in a tabular format. In the tabular display we have editable fields, where user enters amount in these editable fields. Now we need to add the data from…
Kishore
  • 33
  • 6
1
vote
2 answers

Lotus Domino: How can I add a department's signature to an email sent through C# using Domino.dll

I'm writing a program where I can send mails (using domino.dll) from three different department mailboxes (each using its own mail server and nsf-file). All three department mailboxes have a predefined mail signature such as Regards Department…
ThoBa
  • 505
  • 4
  • 8
1
vote
1 answer

integrate with notes client from .NET code with windows credentials

My .NET (WPF and C#) application succesfully integrates with a local Lotus Notes client via Interop.Domino. It prompts the user for his Lotus Notes username/password (which are really the windows credentials) and then creates a mail in the user's…
Torben Junker Kjær
  • 4,042
  • 4
  • 34
  • 33
1
vote
4 answers

Simulate clicking button in Lotus-Notes, VBA

I have an application in Lotus-Notes. I don't have developer rights. My main goal is to automate some process. To do so I need to know how to simulate clicking the button in the view in Lotus-Notes application. I develop it in VBA. My entry point is…
f1024
  • 101
  • 1
  • 3
1
vote
4 answers

If else in lotus notes

How to end if statment in lotus notes. example. @If(@Text(textbox1)="";@Failure("Please input your name");@Success);@command([filesave])
LyodMichael
  • 85
  • 2
  • 13
1
vote
2 answers

Generate UTF-8 file with NotesStream

I'm trying to export some text to an UTF-8 file with LotusScript. I checked the documentation and the following lines should output my text as UTF-8, but Notepad++ says it's ANSI. Dim streamCompanies As NotesStream Dim sesCurrent as New…
Christian Waidner
  • 1,324
  • 1
  • 13
  • 22