LotusScript is a dialect of the BASIC programming language used by Lotus Notes and other IBM Lotus Software products
0
votes
0answers
10 views
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 ...
1
vote
1answer
16 views
Out of office service activation with an run on server agent
Is there an documentation or an easy solution how i can activate the out of office service in an user mailfile with an external run on server agent?
I tried it like this, but it does not work...
...
0
votes
1answer
23 views
LotusScript get attachment's position and replace it
I have a Notes application, with a form. On the form I have a richtext field.
I have to remove all of the attachments and replace them with a picture in the rt field.
So far I have a "demo" app, ...
1
vote
1answer
30 views
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 ...
0
votes
2answers
26 views
LotusScript space character
I am writing Lotusscript agent, how do I say that I need to take value in the right of space character?
For example this takes value in the right of /:
fld9.Value = StrRight(Cstr(doc.request(0)), ...
0
votes
3answers
51 views
Get members of a group in Lotus Domino
I retrieve names from a group using formula, and put them in a field of type Names this way:
@Name([CN];NAME)
I want to manipulate this data in my code, but using Lotusscript. Can't find it at ...
0
votes
1answer
47 views
Lotus Notes client crashes when opening subforms
I have a couple of nested subforms in one of the applications I'm maintaining. The form crashes after I reload around the 6th subform. To clarify: I have 10 main subforms on a form and each can ...
0
votes
2answers
41 views
lotus agent detachs the attachements (EmbeddedObjects)
my lotus agent detachs the attachements. Actually, it works almost well exception the mails sended from by "xxx@aol.fr"
Set rtitem = curdoc.GetFirstItem("Body")
If Not rtitem Is Nothing Then
If ...
0
votes
2answers
27 views
Decode file names from MIME messages with LotusScript
I am parsing a MIME mail with LotusScript to get all attachments. But I get issues when it comes to encoded file names in the header. I got one file with the name
"HE336 ...
0
votes
1answer
29 views
Few LotusScript errors
I am writing agent in LotusScript in Lotus Domino Designer and I get errors in these lines:
Dim session As New LCSession
Class or Type name not found: LCSESSION.
Dim conn As New ...
0
votes
2answers
43 views
lotus designer how to get address from Mail-in name
my lotus agent detachs the files and put them into the different folders base on the destinations of mail (destinations = array type). Actually, it works almost well but it doesn't work with Mail-in ...
0
votes
1answer
45 views
Lotus Notes Search on Web without change in URL
Is there a way in Lotus Notes to search a view without using URL commands.
Thanks.
0
votes
2answers
51 views
agent lotus GetItemValue SendTo, CC and BCC
my lotus agent detachs the files and put them into the different folders base on the destinations of mail.
Actually, it works well but with SendTo only:
found = False
If ...
0
votes
3answers
63 views
How do you set a document parameter in a LotusScript function?
Consider example below. preferencesDoc is passed in as nothing. Its assignment in this function is ignored and it remains nothing after the set. tmpDoc is set fine. Both assignments are identical, so ...
0
votes
2answers
36 views
Remainder Mail agent
I have form with 3 fields adress,status,ReportingDate.
Adress field contains the ID where the mil has to be sent.
Now I have created an agent where it should mail to the data present in adress ...
0
votes
1answer
41 views
Open directory chooser dialog in specific dir
I've got the following code to display a directory chooser dialog
Function selectOutputFolder(lastPath As String) As String
Const BIF_NEWDIALOGSTYLE = &H00000040
Dim objShell As Variant
...
1
vote
3answers
65 views
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 ...
0
votes
0answers
41 views
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 ...
0
votes
6answers
78 views
Display image in notes form from another database
In a traditional notes form, I want to compute an image dynamically. Image is in another database's image resource in the same server.
I have tried using pass thru HTML by computing the URL in ...
1
vote
1answer
39 views
Error - cannot encrypt notesdocument when instantiated by notesuidocument
I get the error "cannot encrypt notesdocument when instantiated by notesuidocument" at the line cjDoc.Encrypt. Can someone tell me how to fix/why it is happening.
Dim currDb as NotesDatabase
Set ...
0
votes
2answers
79 views
Message displaying - asking if want to save document - shouldn't display written in Lotusscript for lotus Notes
I have a form that has an approve and deny button. These buttons will only display when the document is in edit mode.
The document will have the status of "Awaiting Manager Approval" and the user ...
0
votes
0answers
43 views
Date manipulation arithmetic in lotusscript
Note: I am not using notesdatetime class for efficiency. using native arithmetic in lotusscript is 10 times faster which is critical in my application.
I start with two date/times and adjust one to ...
0
votes
3answers
51 views
How to export data from a Lotus private view into excel file?
I'm experimenting with Lotus private views for the first time and I finally made a private view.
Now i need to export this view to excel file... it is possible run one lotusscript to do this?
i´m ...
0
votes
1answer
46 views
Return receipt from gmail, yahoo etc. from lotus notes (lotusscript)
I am sending mails using lotusscript to gmail, Yahoo, hotmail etc. I want to get return receipt from the user & build a report:
Who opened the mail
Who did not receive the mail
Non-existent ...
0
votes
2answers
93 views
Calling script library in agent and button
I want to use the following script library in button and also in agent.
My script library code:Validate
Option Public
Option Declare
Dim Sess As NotesSession
Dim currentDb As NotesDatabase
Dim ...
0
votes
2answers
102 views
LotusScript View ColumnValues dealing with embedded arrays
When working with LotusScript to access the ColumnValues (a variant array of values accessed via a NotesDocument or NotesViewEntry) some of the array elements may contain embedded arrays within one or ...
0
votes
1answer
33 views
CreateViewNavFromCategory (lotuscript) ignore next subcategory if the user doesn't have right to view the first?
Please see the following question, do I make something wrong or is it a bug ? Is there a work around ?
I'm using:
Set notesViewNavigator = notesView.CreateViewNavFromCategory( category$ [ , ...
1
vote
1answer
64 views
Exporting Chinese characters to CSV file results in it being converted to question marks
We are exporting Lotus Notes documents to CSV file. Some of the field have Chinese characters in them. They are visible in Lotus Notes (though I don't understand them) but when we export them to CSV ...
0
votes
1answer
116 views
Cannot Extract Images from Lotus Notes using Java API
I am working on a Data extract from a Lotus Notes Application. It stores legal documents which may have attachments and images (not mails). I want to convert notes documents to HTML. While importing ...
1
vote
2answers
77 views
LotusScript: Saving on read mode on Audit Trail
I have a audit trail that records two fields. I just want to ask if its possible to save changes in audit trail while on read mode? My code doesn't record anything while on read mode. Can you help me ...
1
vote
1answer
137 views
LotusScript: Moving multiple documents in a folder
I have a button "Move Document", supposedly it should move selected document to another folder. I used PutAllInFolder but it only copies the document to "Move Document" folder. Is there another method ...
1
vote
1answer
224 views
LotusScript cannot get file attachment from email
I had never run into this problem, but I cannot get a handle on a file attachment on an email. I have code that can either search the document for Embedded Objects or search a field for Embedded ...
0
votes
1answer
84 views
domParser.Process throws Dom parser operation failed in lotus script
I need to read xml file from local disk using lotus script.
I added the code in the script library and called from the notes view.
origXML = "d:\dxl\xmldom.xml"
outputFile = "d:\dxl\DOMtree.txt"
...
0
votes
3answers
106 views
Can you Sign The agents in a database programmatically?
Is there a way to programmatically sign the agents in a database? I'd like to use a run on server agent to sign the agents of a database that I pass it. I'd like to do this using LotusScript or an ...
0
votes
2answers
200 views
How to copy formatted Richtext into a Word document using Lotusscript and/or VBA?
It directly deals with this one: Cannot instanciate a NotesUIWorkspace from VBA (Word)
As the machines will have Win7 64 this old way isn't appropiate any more.
So how can I copy formatted text that ...
0
votes
1answer
108 views
Cannot instanciate a NotesUIWorkspace from VBA (Word)
The source situation: I have an Notes Application which uses MS Office 2000 under Windows XP. The new situation has to be MS Office 2010 under Windows 7. IBM Notes is 8.5.3FP3.
The old one uses a VBA ...
0
votes
1answer
84 views
Lotus notes agent runs slower in server compared to development PC
I have an attendance recording system that has 2 databases, one for current, another for archiving. The server processes attendance records, and puts records marked completed into the archive. There ...
0
votes
1answer
66 views
How to change checkbox label in Excel using Lotus Script?
i am having requirement to add checkbox in excel column dynamically .i have added using the below code generated by macro. But i not allowing me to check the label of that generated checkbox please ...
0
votes
1answer
456 views
Lotus Notes View with multiline data Export to Excel
I need to export a lotus notes view to excel. The problem is, I have two columns in the view which displays multiple values with "New line" as the separator. I tried the inbuilt export function as ...
1
vote
1answer
117 views
Lotus Notes Domino Getting Date Difference
I have made a code using lotusscript that would calculate the time difference between the two fields, now I want to calculate the difference between dates. I've pretty much started lotusscripting and ...
0
votes
1answer
71 views
Unexpected result when Lotus Notes agent is ran on the server
I have a Lotus Notes agent that search a database then return the result in Excel format. I got the correct result when I run the Agent using Trigger: On Event -> Action menu selection. But when I ...
0
votes
1answer
252 views
Lotus notes Button Script for Multiple Calendar entry
This is my script. I wanted to have 2 dates and time in this script, so when some one clicks on the button there should be two entries in recipient calendar
i would really appreciate any help on this ...
0
votes
1answer
55 views
getDatabase without server paramter does not work on R8
I've got a script like this getDatabase("", "PATH/DATABASE.nsf") and it works on a Notes R7 client. But in the Notes R8 client it trys to get the database from local. Is there a database property or ...
2
votes
1answer
266 views
What is the SQL Query Syntax to write to a Date/Time Data Field in MS Access from LotusScript?
I have a LotusScript (8.5.3) routine that writes Notes data from a view (8.5.3) to a Microsoft Access 2010 database using ODBC. I'm using an SQL statement similar to the one below to write the data. ...
1
vote
2answers
253 views
Lotusscript search windows directory for subdirectories and files. Recursion?
I'm trying to write a LS agent to scan a directory in windows eg:'C:\' for any files and sub-directories. For each sub-directory, it will go inside and search for more files and sub-directories and ...
-1
votes
1answer
83 views
Lotus script dblook up
i use this code to my combo box @Unique(@DbColumn("":"nocache";@DbName;"view";2)) to call the value in a view, now my question is this, if the value of the combo box is human in another combo box will ...
2
votes
1answer
78 views
Create 'versions' programmatically
Lotus Notes has a 'versioning' feature. You can set this to work in a mode in which the user needs to click File->New->Version to create a new version. I would like to use that functionality in ...
2
votes
1answer
188 views
How do I get the size of my Rich Text Field?
I can get the size of the attachments using @Attachmentlength(), or Using NotesEmbeddedObject Class.
But I am facing a peculiar problem. If I copy and paste a screen shot, or copy and paste an image ...
1
vote
1answer
186 views
How to read a RichText field?
I have an agent which is supposed to show a Notes DB as XML. I successfully retrieved all the fields but the RichText one. This is a code snippet:
Set session = New NotesSession
Set doc = ...
-1
votes
1answer
79 views
PCI compliance in existing Notes documents with Lotusscript
I am trying to X out all creditcard numbers in a Lotus Notes database.
They are located in customer emails within a customer database with more than 80.000 documents.
So my issue is to remove data ...

