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
1 answer

Lotus Notes:Web page refresh restriction on attachment upload

I have a situation, in which I want to restrict my web page to refresh after I attach a document. The secnerio is there is some hide when condition written on OnLoad of the Form using javascript, and as soon as the form loads the hide when is active…
Himanshu
  • 55
  • 7
1
vote
1 answer

Lotus Notes 7 - When it's composed, the form position isn't central

I compose a form from a view action : @Command([Compose];"(fmMain)"); When the form it's displayed on the screen, its position is not central, and there is a scroll horizontal on the bottom of it. I don't mind if the scroll exists, but I don't want…
Florin M.
  • 2,159
  • 4
  • 39
  • 97
1
vote
1 answer

How do I prevent Lotus Notes users from forwarding or copying a message sent via Notes.jar API in Java?

I want to sent a programmatic mail using Lotus notes Notes.jar API in java. I need to enable Prevent copying option in my Java program. Is there any way to do this requirement?
1
vote
1 answer

Lotus Notes Java program to access $Revisions columns

I am very new to lotus notes and java. I am trying to get all documents which are modified by specific time. I can not use getallmodifieddocuments because , notes version R5. I am trying to get it as follows: String query = Select Form = Protocol &…
Prajakta
  • 27
  • 1
  • 3
1
vote
1 answer

Notes 9 client doesn't display inline images as before

We have an application that displays photos of employees. The images are uploaded from files and rendered inline via a NotesStream.SetContentFromBytes. The field in Designer is regular Rich Text, not stored as HTML/MIME. The NotesStream creates a…
Brian Moore
  • 137
  • 2
  • 8
1
vote
4 answers

Lotus Notes: Displaying days of a month, following the weekdays of it

I have a not so nice question. I've been thinking about this for like a month now and read a couple of books but can seem to find an answer or how to execute this. As you all know, I'm making this application that generates date. I have one combobox…
drayl
  • 261
  • 2
  • 8
  • 21
1
vote
1 answer

Create a Microsoft Outlook Task from Lotus Notes

I want to create a Microsoft Outlook Task from Lotus Notes and assign that task to someone. I create the task in LotusScript and this works fine if don't assign the task to anyone. However, I can't get the right syntax to add a name into the send…
user1358852
1
vote
1 answer

Lotus Notes - Column view as Totals: Total showing not 0.00 even if there aren't no docs saved

I have a view which contains a column ( as Total ) . Even, there aren't any docs created, the column shows: 165.65 ( as total ) and not 0.00 ( as it should be ) Any suggestions?
Florin M.
  • 2,159
  • 4
  • 39
  • 97
1
vote
1 answer

Get field names in Formula Language

I'm almost certain there's a way in the Notes Formula language to get the names of items ("fields") on a document, but I can't remember it, and there's no cross-reference from NotesDocument.Items in the documentation.
iconoclast
  • 21,213
  • 15
  • 102
  • 138
1
vote
2 answers

How to get the filename for an attachment if there already is another one with the same filename, instead of getting a random name?

In cases when two attachments with the same filename are attached to a Notes Document, the second file is renamed internally to something like ATTXXXX. Even if the first filename is deleted and document re-saved, the internal filename remains…
Andrew Magerman
  • 1,394
  • 1
  • 13
  • 23
1
vote
1 answer

Lotus Notes: get parent category name for column formula

In my Lotus Notes database, I have a view that shows some documents, categorized by date. Date field may have several dates in it, so I use @Explode(Date) to show documents in all categories it can be in. But in one of the columns I need to show…
1
vote
3 answers

Extracting attachments from two rich text fields in a document

I am extracting attachments in a document to user's local machine using LotusScript. The document has two rich text fields Body1 and Body2 and many a times only one of them has an attachment in it. I am using the below code snippet: Dim doc As…
Naveen
  • 6,786
  • 10
  • 37
  • 85
1
vote
2 answers

Opening document in client preview pane crashes Lotus Notes. Anyone seen this?

The problem I am about to describe has been going on since we upgraded from 8.5.2 to 8.5.3. We have a simple required reading program that routes documents to be read and has a button that allows folks to indicate that they read it. On occasion,…
Mike Jackson
  • 427
  • 4
  • 18
1
vote
2 answers

Does Lotus Notes support AMQP or JMS?

To be honest, I have no clue what these are. I know they are some sort of messaging protocols, but that's about it. A manager in my organization wants to know, so I'm asking. Any help would be appreciated. Thanks, MJ
Mike Jackson
  • 427
  • 4
  • 18
1
vote
3 answers

How to open a classical Notes document in a new client tab, triggered by a XPage

I have to implement the following request, but all my tries failed: If you click on a button/link in a XPage (XPiNC), a classic Notes-Document shall be created in another Notes Database. This new Notes document has to be open in a new client tab…