Questions tagged [lotusscript]

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

Lotus-Notes-oriented questions on StackOverflow are infrequent enough that the single lotus-notes tag should encompass all Lotus Notes language topics, including LotusScript, the Notes formula language, the Notes C/C++ API, and the COM and Java interfaces. As such, it is better to use that tag, lotus-notes, rather than this one, lotusscript.

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.

1233 questions
4
votes
3 answers

Share a LotusScript library between databases

Is it possible to create a LotusScript library in one database and then access it from another database? Without simply copying the library into each database that needs to use it. What I would like to achieve is a single location where I can update…
molasses
  • 3,258
  • 6
  • 22
  • 22
4
votes
10 answers

How to export Rich Text fields as HTML from Notes with LotusScript?

I'm working on a data migration task, where I have to export a somewhat large Lotus Notes application into a blogging platform. My first task was to export the articles from Lotus Notes into CSV files. I created a Agent in LotusScript to export the…
Emil Rasmussen
  • 653
  • 1
  • 5
  • 19
4
votes
6 answers

Any other IDEs for Lotus Notes other than Domino Designer?

Are there any other IDEs worth my time for Lotus Notes development? We're doing mostly LotusScript development and would kill for features of Eclipse or Visual Studio, like "Show Declaration". I know there's an Eclipse plugin for Java development in…
Bob King
  • 25,372
  • 6
  • 54
  • 66
4
votes
2 answers

Authentication and web services in Domino?

Is there a way to allow authentication in Domino webservices? If so, how would I do it?
Bruce Stemplewski
  • 1,343
  • 1
  • 23
  • 66
3
votes
2 answers

how to refresh HideWhen formulas on views

i have soft delete enabled database and i store these deleted documents into a view named 'DeletedDocuments' i have an action on this view to delete the soft-deleted documents permenantly... i have a HideWhen formula on the action stating that the…
Bebo
  • 129
  • 2
  • 12
3
votes
1 answer

separating 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 every time before adding mWrkFlwDoc.workFlow(0) Function workFlowHistory() workFlowHistory=False Dim mWrkFlwVw As NotesView Dim mWrkFlwColl As NotesDocumentCollection Dim…
Bebo
  • 129
  • 2
  • 12
3
votes
2 answers

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 NotesDatabase Dim vItemsBySupplierSpec As NotesView …
George Duckett
  • 31,770
  • 9
  • 95
  • 162
3
votes
1 answer

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 email I receive containing the string 'Stack…
Flash
  • 15,945
  • 13
  • 70
  • 98
3
votes
4 answers

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 there will come a time that they will simultaneously…
John Bautista
  • 1,480
  • 3
  • 29
  • 60
3
votes
1 answer

Can I use NotesDirectory.LookupNames on a secondary Domino directory defined through Directory Assistance?

In a LotusScript driven application we make heavy use of NotesDirectory.LookupNames to create DirNavs and retrieve data from person documents. Works fine just using the server's primary NAB: we're using ($Users) view for the lookup then return…
Lothar Mueller
  • 2,528
  • 1
  • 16
  • 29
3
votes
6 answers

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. Currently I have to either click the Reply…
Dean Hill
  • 4,369
  • 6
  • 31
  • 35
3
votes
1 answer

Excel Runtime Error "Unable to get the add property of the OLEObjects class"

I am creating a LotusScript script which creates an Excel file with embedded objects. But when I come to actually embed the PDF file I get "Unable to get the Add property of the OLEObjects class". Unfortunately Lotusscript can't deal with named…
Joesse
  • 69
  • 6
3
votes
2 answers

Call to an external API via HTTPS from LotusScript

I need to make a call to a HTTPS based service, from LotusScript. Previously, I have used: Set http = CreateObject("Msxml2.ServerXMLHTTP.3.0") But now we have moved the application to a Domino server on Linux. My first attempt to replace this code,…
Bo Frederiksen
  • 2,087
  • 1
  • 14
  • 21
3
votes
3 answers

Getting documents of last 25 minutes with formula and lotusscript

In lotus I have a view with order documents. I am building an agent to search for all orders which are modified in the last 25 minutes. For this I have done code like: strFormule = "Form=""Order"" & @Modified >= @Adjust(@Today;0;0;0;0;-25;0) &…
Nuri Ensing
  • 1,899
  • 1
  • 19
  • 42
3
votes
1 answer

Copying attachments from one form to another lotus notes

I have a requirement where there is a document which has an attachment and when I click on a button, it opens a new form. This form must have that attachment in the rich text field. I have written the below code in the PostOpen event of the new form…
Harshi
  • 189
  • 1
  • 4
  • 20
1
2
3
82 83