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
3 answers

Type mismatch error while reading lotus notes document in vb6

Am trying to read the lotus notes document using VB6.I can able to read the values of the but suddenly type mismatch error is throwed.When i reintialise the vb6 variable it works but stops after certain point. ex; address field in lotus…
Jeyaganesh
  • 1,334
  • 5
  • 26
  • 48
1
vote
2 answers

What is the access for this user?

A user is added to 2 different groups. 1 group is provided author access and another group is provided with editor access. First group has user role 'A' and second group has user role ' A,B'. What is the access and role the user would have?
1
vote
2 answers

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 more elements. eg: doc.ColumnValues(0) =…
andora
  • 1,326
  • 1
  • 13
  • 23
1
vote
2 answers

Do Access Control Sections Need an Authors Field Too?

I've been a Notes developer for years but never used an Access Control Section on a Form. I want to give (web) users (with the right [role]) access to edit only one field on a document. I'm assuming an Access Control Sections is the way to go. A…
Jake Howlett
  • 169
  • 3
  • 14
1
vote
3 answers

Query is not understandable - using field Fulltext search [Tags] = "foo"

I have a problem that only happens rarely with FT search. but once it happens it stays. I use the following search term in the FT search box in Lotus Notes [Tags] = "foo" in most application this search term work fine. but for some applications…
Thomas Adrian
  • 3,543
  • 6
  • 32
  • 62
1
vote
1 answer

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 file they are converted to question marks. Below…
Naveen
  • 6,786
  • 10
  • 37
  • 85
1
vote
1 answer

Lotus Notes: Formula: 24 hour Time Format Display

I have a computed field that serves as "reference number" by combining date and time. But, the problem is the time format, it displays AM/PM, I need to make it as military time format or 24hr format. Is there a formula for that? I've search some…
drayl
  • 261
  • 2
  • 8
  • 21
1
vote
2 answers

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 guys? Here's my code: Querysave: Sub…
drayl
  • 261
  • 2
  • 8
  • 21
1
vote
2 answers

Lotus Notes Agent to forward an email on a button press

I would like to add a butoon to the toolbar in Lotus Notes that performs the following actions when clicked on: Forward the selected email (in preview pane), cc'ing the sender of the original email, and with some standard text cc'd into the body of…
user2344253
  • 11
  • 1
  • 2
1
vote
1 answer

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 that can totally move them to another folder or…
drayl
  • 261
  • 2
  • 8
  • 21
1
vote
3 answers

To handle 12000, agency codes in drop-down in Lotus Notes

I have a field in which I want to show a drop-down which contains almost 12,000 agency codes, I am little worried about the performance of Lotus Client, I have thought of creating a configuration view and then using dbcolumn I can bring the values…
Himanshu
  • 55
  • 7
1
vote
3 answers

Select documents from the last 7 days

I have a view selection formula: Var :=@If(@IsAvailable(ENVIADO); @If(ENVIADO != "Sim"; "Valido";"");"Valido"); SELECT (Form="Documento"&@Date(Notes_data)>@Date(2013;3;31)&Emissor!=""&DocApagado="Não"&Estado="Definitivo"&@IsUnavailable($Conflict)) &…
PedroPinto
  • 21
  • 1
  • 1
  • 7
1
vote
4 answers

MS Access 2000: Is it possible to open a connection to query Lotus Notes?

Can I create either an ODBC connection or a connection string in VBA to get into a lotus notes database to pull data out of it?
Mohgeroth
  • 1,617
  • 4
  • 32
  • 47
1
vote
2 answers

Notes app performance hit

We recently switch to 8.5 server. We have also a quite complex application that is coming from V4.5 and was simply copied to new server versions without any issues. But now in 8.5 we experience a performance hit when opening and create docs. As…
PeterMmm
  • 24,152
  • 13
  • 73
  • 111
1
vote
3 answers

Generating excel through HTML with the help of agent when MS-Office is not present on server

I have created an agent that generates an Excel document and sends it to specific users through mail. The Excel file generation is done at run time and as such I am not storing the file anywhere. However, the issue is that the agent is supposed to…
Kaka Rafa
  • 11
  • 1