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
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
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
3answers
49 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
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 ...
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
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
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 ...
-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 ...
0
votes
2answers
74 views

Field returns empty string

I create a new profile document with the following code: Set doc = db.Createdocument() doc.Form = "SMBPrivateProfile" Call doc.Computewithform(True,True) Call doc.Save(True, False) But whenever I ...
0
votes
2answers
203 views

lotus notes 5 getdocumentbykey not working if view is open

There is an application on Lotus notes 5. The getdocumentbykey function is not working if the view is open. If some other view is open or if the Database is closed then the function is working ...
1
vote
1answer
252 views

how to disable lotus note shortcut key.in lotus note

good day, Question: anyone know how to disable lotus notes shortcut keys, for example in a view, no copy and paste a data?
0
votes
1answer
538 views

Filtering view in lotus notes

good day, I'm trying to filter date by year using @setviewinfo. can anyone tell me how?
0
votes
2answers
638 views

Running Lotus Script Agent is not getting logged in Lotus Notes User log

I have written a basic lotus script agent that shows "Hello World" in a Message Box. When I run this agent manually, it gets executed successfully but the Event of running is not getting a log entry ...
0
votes
3answers
217 views

Consuming web services in Lotus Notes 6.5

How can we consume any web services in Lotus Notes 6.5. I have seen reference to Soap Connect API. Is it the only way to do it..? Any example will be a great help.. Thanks..
1
vote
1answer
95 views

no duplication in database lotus note

good day every one. what are the effect of re-cache if i use it to my updating data? This is what i trying to do, but i need to know what will happen if i replace the no-cache to re-cache i will ...
0
votes
1answer
137 views

web agent can redirect to the top target?

I'm calling from an iframe an agent that should redirect the user to a given page on the whole page. It's a lotus script agent that do his stuff and then redirect using a common: Print ...
1
vote
2answers
178 views

How to create Lotus form to both enter data and display the same information (Lotus Designer)

Very new to Lotus designer. I am trying to create a simple form with a field which is updated from time with additional information. I want the admin user to be able to update this information on the ...
0
votes
1answer
297 views

Error 4005 when running ExtractFile in a scheduled agent

I have a scheduled LotusScript agent that I want to loop through documents in a view and extract the attached file(s) to a folder on the server: 'extract file If Not IsEmpty(rtitem.embeddedObjects) ...
0
votes
1answer
124 views

How are corrupt values being populated in document field in Lotus Domino database?

Have a Lotus Domino database that has been in use for 13 years. Today a hidden editable field named NumApprovers has started to get garbled values in it on several documents. The field is updated ...
0
votes
3answers
129 views

upload staff leave field status database table (Lotus notes 8.5.3) to Human resources table (Oracle 9I)

I'm using Oracle 10g Express or Oracle XE and lotus notes 8.5.3. In the Staff Leave Database i have few field need to update on last run of the leave database to oracle database. example fields are ...
1
vote
1answer
183 views

Encrypted emails are giving false form Notes api

I have send an Encrypted email to Lotus notes in-box, If I access that email from my local Its giving true, If the same email is running different system Its giving false. Is it setting issue? My code ...
0
votes
1answer
365 views

Lotus Notes: Connection Error [Microsoft] [ODBC Driver Manager] Data source name not found and no default driver specified

In one of the Lotus Notes application which requires connection with external SQL DB, we have one user who is getting error message prompt because ODBC driver is not able to connect. I did following ...
2
votes
2answers
202 views

Setting the section style to mimic the one used in Lotus Notes reply with history?

Is there any way to set the style of a section in Lotusscript? I would like to mimic the type of section used in reply with history in lotus notes. Using lotusscript Set the margin so the section ...
0
votes
1answer
264 views

Export Sametime buddylist from vpuserinfo.nsf use lotusscript

I know we can get access to custom data of vpuserinfo.nsf using: byteArray = notesDocument.GetItemValueCustomDataBytes( itemName$ , dataTypeNam$) But i don't know the datatypename of "8193". Can ...
1
vote
3answers
617 views

How to create a MIME mail with an attachment containing extended characters (with accents) using LotusScript

In a LotusScript agent I create a multi-part mail in MIME, using the MIME classes. It works, mails are sent correctly. There's just one big problem: files with accented characters in their name ...
2
votes
1answer
1k views

Trying to work with a multi-value array in LotusScript and sort of stuck

I have to find a way to store a series of variables - MonthYear (the key) and a counter. The purpose of this is to track the number of documents processed by Month & Year. I was thinking of a list ...
2
votes
3answers
247 views

DocumentContext not returning value

I am using following code in a Java Agent in Lotus Notes: Session session = getSession(); AgentContext agentContext = session.getAgentContext(); Document doc = agentContext.getDocumentContext(); ...
0
votes
2answers
214 views

VB ASCB in LotusScript?

Working on converting a Visual Basic SHA-256 encryption routine to work in LotusScript. Is going well except for the VB's AscB command. Found: "Use the AscB function to return the first byte of a ...
1
vote
2answers
858 views

Consume SSL Web Service using Domino 8.0.2

Working on a project where I need to consume a web service over HTTPS (SSL) using Domino 8.0.2. Was able to create the script library to consume the web service. Created a simple button to test ...
1
vote
2answers
768 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
1answer
596 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, ...
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 ...
0
votes
1answer
1k views

Lotus notes application access to microsoft exchange server

We have Lotus Notes based application, which is accessed by several users. We communicate with our users by using mailboxes which reside on Domino server. With mailboxes migrating from Lotus notes to ...
0
votes
2answers
455 views

Interaction with Lotus Connections

I need to get the data from some lotus connection site, for example user's status, from the other site. I try to setup a connection with lotus via java, e.g. > server = "https://" + path + ...
0
votes
2answers
804 views

Managing an unstable SQL connection on a Lotus Notes Agent

I have a working Lotus Notes agent. Running on LN 7. My agent runs every 5 minutes, and it sends some mails whenever it finds some specific records on an Microsoft SQL (2005) table. It usually works ...
1
vote
2answers
2k views

How to use a LotusScript function as a document selection routine

Can we use a lotusscript function as a document selection routine inside view selection formula ? Here is my lotus function which determines the selection criteria Function MyFilter(doc As ...
0
votes
2answers
187 views

Check if a user can read a file on a UNC-Share

A User on our Windows Client has a function to send Links to Files on our Network-Shares (UNC-Paths) to other Users in our Company. Often these Users does not know if the receipients have access to ...
0
votes
2answers
5k views

Using a lotus script to change data in a field.Want the data to be multi lined

Good day, I'll start by saying I work for a small company and have no official training in Notes everything I know I've learned buy trial and error & using other peoples codes. Application: We ...
0
votes
2answers
690 views

Lotus view column compare to string/integer

I have a lotus view that stores a number. I need to perform some math against the value, but I am having a lot of problems getting the types to match up. doc.numOfGold = numGold and ...
0
votes
3answers
1k views

How to add X-header to outgoing mail with LotusScript

I am looking for the Lotus Script which would add X-header to the outgoing e-mail if it has particular item in the list. The item value is set from the custom checkbox, added to one of templates. I ...
0
votes
2answers
821 views

How do I Use a Date in an Array in GetAllEntriesByKey?

I'm trying to use the current day in GetAllEntriesByKey by passing an array. The array so far looks like this Dim keyarray(2) As Variant keyarray(0) = "FF Thompson ADT" Set keyarray(1) = ...
2
votes
4answers
5k views

In a LotusScript Agent how do you get the name of the current server?

In a LotusScript Agent that is being run via WebQueryOpen, how do you get the name of the current server?