LotusScript is a dialect of the BASIC programming language used by Lotus Notes and other IBM Lotus Software products

learn more… | top users | synonyms

0
votes
1answer
450 views

LotusScript: Invalid Key Value Type

Can someone offer some help on this? I'm getting an 'invalid key value type' error when trying to search a view using the userName variable as a key. Is this because it's the NotesName type? Is ...
4
votes
5answers
1k views

How do I connect an SQL database to Lotus Domino Designer?

I am creating a Lotus Notes application which has to have dynamic combo boxes. The choices for the combo boxes need to be retrieved by selecting from a SQL database. I am new to Lotus Notes / ...
0
votes
3answers
1k views

Using multiple values field in Lotus Notes

I am trying to write a logging system for a form in Lotus Notes but I am at the part where I am not sure how I can append the information about the fields that are changed in the log fields. There are ...
1
vote
1answer
624 views

Type mismatch when comparing value with lotusscript

This question is related to my original question I am trying to follow Ken's suggestion. So I just want to see if I can at least pop up a message box if the original and last saved value is the same. ...
0
votes
2answers
416 views

LotusScript Function Doesn't Update Field

I'm trying to get a document to be created for each instance of a string of dates. This however doesn't work as I'd hoped - the field doesn't update and the debugger doesn't show me anything at all. ...
0
votes
1answer
590 views

seperating each value as newline in an field by lotus script

i have this piece of function..and i want to add a new line to mVal everytime before adding mWrkFlwDoc.workFlow(0) Function workFlowHistory() workFlowHistory=False Dim mWrkFlwVw As NotesView Dim ...
0
votes
1answer
384 views

LotusScript Function Doesn't Save Form Fields

Can anyone spot an obvious reason as to why my save function isn't saving the fields in my form? It saves the document, but the fields are empty when I open it up. The following code is what I'm ...
1
vote
2answers
401 views

How can I remove few enties in the $UpdatedBy field in a particular documents

With out modifying the option in the database properties Advanced tab Option "Limit entries in $UpdatedBy Fields " --- How can I remove few of the $UpdatedBy field entries in documents. I have a ...
1
vote
3answers
399 views

Adding logging in Lotus Notes form

I want to add logging capabilities in my Lotus Notes application. Basically I want to be able to log who make the change, when the change is made, and what field(s) is/are changed in a document. What ...
-3
votes
2answers
259 views

How can I generate Lotus Notes (8.5) emails from external RSS feeds?

I would like to have a Lotus Notes email auto-generated and sent to a specific Lotus Notes account whenever new items are detected via an RSS feed subscribed to on the UI sidebar. Any and all ...
2
votes
2answers
1k views

Access current document and display messagebox from agent called via lotusscript from UI

I have an agent with the following code: Sub Initialize MessageBox "AgentStart" Print "AgentStart" Dim ws As New NotesUIWorkspace Dim s As New NotesSession Dim db As ...
3
votes
1answer
356 views

Automatically add hyperlinks to text in received emails

In Lotus Notes 8.5, is there a way I can automatically search received emails for a certain string and add a hyperlink/hotspot to every occurence of this string? For example, can I make it so every ...
0
votes
3answers
326 views

LotusScript - Can anyone fix my function?

I'm trying to write a validation function that checks to see if an entry being added already exists in the dataset. But the search doesn't pick it up - i can just keep entering the same appointment ...
2
votes
3answers
899 views

Recurring calendar entries in Lotus Notes

Does somebody know if it is possible to change one of documents in a series of recurring meetings? I changed one of them with c# api and it changed all documents in the series (e.g. 5 docs in series ...
0
votes
2answers
895 views

I want to calculate 2 dates difference in Lotusscript (IBM Lotus Notes 8.5)

I want to calculate two dates difference in Lotusscript. e.g. (10/18/2011 - 08/18/2011) = 71 days
0
votes
1answer
106 views

Getting rescheduling notic to specified appoitment

Maybe somebody knows how is linked a meeting (documment) with an rescheduled notice which are send after changing dates in meeting. I need do this in Lotus C API and C# api. I need to check if after ...
0
votes
1answer
939 views

How do I copy specific text from a document in edit mode and add it to the subject line?

I'm far from an expert, but I've learned quite a little bit about using the Lotus @Formula language recently and have created some very useful buttons for myself. Unfortunately, I'm having trouble ...
1
vote
4answers
455 views

Lotus Domino cannot move subdocuments from one document to another?

Our Domino developer told us that it is "technologically impossible" to move subdocuments between documents. Is this true? Earlier this year he wrote for us a course registration system with the ...
1
vote
3answers
1k views

Update computed fields without validating

I have a form with a field ItemNumber that has a validation forumla that ensures a value is entered. In lotusscript i create a new document with that form, then depending on the value of a different ...
1
vote
1answer
664 views

Workspace.ComposeDocument and QueryOpen and PostOpen events

I'm using the following code to create a document in an action on another form: Sub Click(Source As Button) Dim ws As New NotesUIWorkspace Dim NewItemDoc As NotesUIDocument Dim ParentUNID ...
1
vote
2answers
575 views

Notes Designer runs agent after saving

I recently switched to Notes Designer 8.5.2 and noticed if I am editing an Agent scheduled for running daily at 08:00 the agent runs right after saving changes in the programmers panel. Is that a ...
1
vote
1answer
444 views

Print Multiple Selected Documents in View via Web lotus domino

i would like to print selected documents in a view in a way that each document are compiled in a single print. It's like 1 document on page 1 and second document on page 2. I after i print this ...
2
votes
4answers
882 views

Controlling Java and Lotusscript agents

I created 2 agents, one made of Java and another made of Lotusscript. The java agent is scheduled to run every 5 minutes, while the lotusscript agent is scheduled to run every 15 minutes. Therefor ...
0
votes
1answer
409 views

Checking connection status with Domino server

Is it is possible to check the connection status with Domino server using a C# API? I have a C# application, and I have to check if the connection with the Domino server is still alive or thr Domino ...
1
vote
2answers
741 views

Lotus Notes custom search

I am very new to lotus notes. This will all be done on the client. I need to write a custom search that will search a particular form. This an example of the fields: FormName = MyForm1 database ...
0
votes
2answers
779 views

Convert Text to Number Excel in LotusScript

Can anyone guide me on how do i convert a Text To Number? I've been trying to use xlapp.selection.FormatNumber = "#,##0.00" But won't work because the exported column turns out to be in a text ...
0
votes
1answer
277 views

How to export to excel with specified month

Sub Initialize 'Copyright Botstation (www.botstation.com) Dim session As New NotesSession Dim wks As New NotesUIWorkspace Dim db As NotesDatabase Dim view As NotesView Dim ...
0
votes
1answer
566 views

Problem saving value to document, via custom class, in querysave

I have written a small custom class to run an audit trail in Lotus Notes 8.5.2. I set the value of a NotesRichTextItem in my custom class and everything looks fine. When I drop out of my custom class, ...
2
votes
1answer
1k views

Lotus Notes 8.5 client hide action button

I am having problems hiding an action button in a view. We recently upgraded to 8.5 and the method I used to use no longer works. I used to be able to create a role in the acl. Then add this formula ...
3
votes
4answers
3k views

Call to getEmbeddedObjects(); (Domino Server API) returns wrong results

The Domino server API getEmbeddedObjects(); returns the wrong result (zero) when a mail containing an attachment (as embedded object) is sent from the script. Though an attachment is sent as an ...
2
votes
4answers
5k views

Create Lotus Notes hotkey/shortcut key for “reply to all with history”

Because I like to make common actions quick to access, I'd like to define a hotkey, e.g. Alt+L to do "reply to all with history", to act on the selected email. I'm using Lotus Notes 8.5 under Windows. ...
0
votes
1answer
507 views

Lotus Notes web form not updating

I have a web form we use in Lotus Notes, it is an ASP page loaded off of the server into the Notes calendar. It is loaded using the embedded browser into a Form. We update some fields on it, then ...
0
votes
1answer
138 views

Lotus Smartsuite to “something newer”

I shall try and keep my scenario as brief as possible and to the point. The office I’m currently working for uses Lotus Smartsuite on Windows 98 / XP, using lots of Lotus Script to tie together Lotus ...
0
votes
3answers
575 views

Button Event Field Setting Issue - Lotus Script

I have a button in a form that on brings a picklist of a view's documents... My issue is am not able to set the selected document from the picklist into a field "Superior1".. plz help me.. following ...
0
votes
2answers
2k views

Button Click Event - Lotus Script

I want proper lotus script for button click event that on click pops out a keyword list of staff to select and place on the superior1 field... I am not sure of the parameters to be given... please ...
0
votes
2answers
417 views

Filter Process script Library

I have a form called Approver in "Approver" db. The form has two editable text fields: Office and Group. It also has a dialog list field superior1. The superior1 dialog list field should show the ...
0
votes
2answers
1k views

lotuscript: some questions about connecting to a SQL DB

I've got this code that is working... I read from an MS SQL database some rows from a table and then send an email for each row. I'm about to add an "attachment" field, on my SQL database and I'd ...
1
vote
3answers
835 views

Assign a datetime array to a multivalue date field on the Domino form

I am accessing a document from a view, read a datetime field, figure out number of days between two date/time values which fall into four categories. In each category there is a for loop which add ...
0
votes
2answers
3k views

“Invalid universal id” error while getting parent UNID for Lotus notes

I have wrote the follwing code o get the parent UNID of a response document. But I am getting "Invalid universal ID" error. But when I create a doclink using the "$Ref" I am able to access the parent ...
0
votes
1answer
385 views

NotesUIDocument and NotesDocument Send - one works, one doesn't but, never both

I am working with a calendar and scheduling application. The requirements are to work in Notes and on Blackberry devices. Currently when I do a send using a NotesDocument, it works fine for the ...
0
votes
4answers
2k views

Validating Attachment in Richtext field

I am using below code to validate the Attachment in Richtext field. If I will not used Call source.Refresh(True) then validation is not working, but this code is also refreshing document everytime ...
0
votes
1answer
796 views

AJAX File Upload to LotusScript Agent

Im trying to upload a file using a LotusScript agent for the backend - I have a simple form with an upload control on it and am using AJAX to submit the form (using YUI Connection Manager) to the ...
0
votes
2answers
944 views

How to Compute a Field in a Form from another Form or View in a Lotus DB

I have form "A" which there is a field that I need be computed after composed from Form "B". The forms are in the same database. I am not sure if it would be better to have the Form "A" field ...
0
votes
1answer
641 views

how to pass value from parent to response using lotus script

how to pass value from parent to response using lotusscript or formula?
1
vote
3answers
672 views

How to preview form using lotus script

I want to preview the current form and in the preview I can print it, how can I do this in lotus script?
0
votes
2answers
696 views

Change the caption of button in Lotus Notes

How can I change the caption of a button using LotusScript/Formula?
4
votes
2answers
2k views

LotusScript ArrayUnique function doesn't seem to work with date/time arrays

I've tried to figure this issue out on my own, but perhaps there is something I am misunderstanding about the way ArrayUnique works. Here is some sample LotusScript code: 'Let's test some dates ...
1
vote
2answers
1k views

Use script library from another database

Is it possible to call script libraries from another database?
3
votes
4answers
2k views

Calling Lotus Script Function From Lotus Formula

I need to call a lotus script function from Lotus Formula. The function returns a result. I do not just want to run a script which does not return any value. This is for Lotus Notes 7. Example ...
0
votes
1answer
746 views

how to compare the strings of two richtext fields

I want a lotusscript code which can compare the strings of two richtext fields. I have two forms named form1 and form2 and in each form i have one richtext field name "body" and "body1" through my ...