1
vote
0answers
58 views

LotusNotes NotesStream to byte array /

I want to read the content of a NotesStream object (COM reference) without using the file system. Thus my intension was to transfer the content into a .NET byte array. My examples are in VB.net ...
1
vote
1answer
169 views

integrate with notes client from .NET code with windows credentials

My .NET (WPF and C#) application succesfully integrates with a local Lotus Notes client via Interop.Domino. It prompts the user for his Lotus Notes username/password (which are really the windows ...
1
vote
3answers
136 views

Open a new email windows containing an attachment

In our app we want the user to be able to send an email containing a PDF-attachment to a client. However, our users use both Notes and Outlook (and probably other clients as well), so we don't want to ...
1
vote
0answers
157 views

save image from <notesbitmap> in dxl file to local machine , c#

Subject: how to save image from notesbitmap tag of dxl file on local machine Product Area: Lotus Notes Client how can i save image from dxl to local machine , c# I have dxl file and i want save ...
1
vote
1answer
246 views

Notes session returns NotesView instead of NotesDocument when resolving document by notes URL

I'm using the Domino .NET wrapper classes to allow users to drag an email from their Lotus inbox to a winform. I'm getting a data object back, that contains notes URL to the document, in the form ...
2
votes
0answers
260 views

Inserting data into LotusNotes Text List field with C#

I am porting some java code that writes to a Notes database into C#. Generally, that is going well, however, I have come upon a hangup dealing with Text List fields in the Notes documents. I am ...
3
votes
1answer
854 views

Send mail using c# and Lotus Notes using Client

I'm having trouble finding a simple sdk to integrate the Notes-Client from within my c# winform app. Requirements: In a c# WinForm application I have to sent notifications by email. These emails ...
4
votes
1answer
463 views

Creating animated gif image from binary data using C#

I'm creating a custom application in C# 2010 to copy images from Lotus Notes to sharepoint. I'm using domino to read the content from Notes. Notes has inline animated gif image and when i read the ...
1
vote
1answer
484 views

Lotus Notes - Saving Corrupt Attachment Programmatically - NotesEmbeddedObject

I have an NSF that contains an email message with two attachments. One of the attachments is corrupt, and if I attempt to save it, Notes displays this message The attachment may be corrupted. Would ...
0
votes
1answer
204 views

Lotus Notes - .Net sidebar application

Is it possible to integrate a .NET (WPF) application as a sidebar application in Lotus Notes?
0
votes
3answers
646 views

Lotus Notes Document Types

Which Lotus Notes Types Document Types can be distinguished, respectively which values for a "Form Item" of a Document in an NSF file are possible ("Memo", "Appointment", "Task",...)? Unfortunately I ...
1
vote
2answers
1k views

Lotus Notes: NotesSQL on Windows 2008 - ODBC Problem

I want to use the NotesSQL ODBC driver to access Lotus Notes NSF files. Because of some reasons I must do this on a Windows Server 2008. Unfortunately I cannot configure the ODBC datasource on this ...
0
votes
1answer
371 views

Differ between memos, appointments, tasks,… with C# and Lotus Notes

I want to use the Lotus Notes COM Library to access NSF files from a .NET application. I am not a Lotus Notes export. How can I differ between the various Lotus objects/items like Memo, ...
0
votes
1answer
360 views

Lotus Notes: NotesSQL Restrictions

Does anybody know the restrictions of the NotesSQL API (Domino ODBC API)? E.g. can I read mail attachments with this API? Or should the domino.dll the prefered way to access NSF files (in the .NET ...
2
votes
1answer
3k views

Read Lotus Notes documents and items from NSF file with C#

How can I get all Lotus Notes documents (e.g. mails and their content) from a Lotus Notes inbox from an NSF Files with C# and the usage of interop.domino.dll? I want to use the following snippet: ...
1
vote
2answers
1k views

Documentation for the Lotus Notes domino.dll respectively interop.domino.dll

Where can I find a documentation for the Lotus Notes domino.dll respectively interop.domino.dll?
0
votes
1answer
2k views

Lotus Notes Interop.Domino.dll

Where can the Lotus Notes (Interop.)Domino.dll be downloaded ? Must I have installed a Lotus Client?
1
vote
2answers
803 views

Lotus Notes, Exchange and C#

How can I access and read Lotus Notes NSF Files via C# (without a Lotus Notes Client installation)? What are the big differences between Outlook PST Files and NSF Files? Where can I find good code ...
0
votes
2answers
225 views

NoteSession cannot find Notes.ini on server

I have a vb.net that interacts with Lotus Notes; however, I have a problem when I make a NotesSession. Every time I try to make a notesSession, I get an error because it can't find the notes.ini. If ...
2
votes
3answers
3k views

How do I prevent Lotus Notes users from forwarding or copying a message sent via System.Net.Mail?

I want to send email using SMTP client uiing microsft.net with C# as programming language. But for the emails sent through SMTP client, can we add security features like "no forwarding" or "no ...
0
votes
1answer
705 views

Getting “Database open failed” exception while sending email through lotus notes with .NET

I am working on a task where my .net application should send emails using Lotus Notes client ( NOT SMTP) with .NET using Dominos.dll. I am able to send mails also. But the problem comes when i close ...
-2
votes
4answers
903 views

Should Lotus Notes Client be running or Open in background to send emails programatically using .NET through Lotus Notes Client?

Does Lotus notes client be running or opened in the background to send emails using Lotus Notes with .Net? I am working on a task where my .net application should send emails using Lotus Notes client ...
0
votes
1answer
127 views

How to connect and synchronize Lotus Notes calendar with Windoes CE custom application

We are developing custom appication on Win CE and we need to synchronize data on device with calendar of selected user. thanks for help
1
vote
1answer
306 views

System.Net.Mail.MailAddress Validation

I am working with the lotus notes smtp server and i need to send mails to lotus notes mail groups, which are not standard mail addresses, for example: mail.To.Add("#Team Mailing List"); I know that ...
1
vote
1answer
814 views

Replacement for CAPICOM

Now CAPICOM is deprecated, and MSDN recommends to use .net classes from System.Security.Cryptography. But I have one Lotus Notes application, which using CAPICOM from LotusScript code (very similar ...
6
votes
3answers
4k views

.NET and Lotus Notes Interop

I've Lotus Notes database file (.nsf) at some location, let's say: http://intranet.mycompany.com/somewhere/data.nsf Is it possible in any way to read from that location using any .NET language?
1
vote
4answers
2k views

c# generated csv file sent via email embedded to bottom of email in lotus note

I am having this weired issue that CSV attachment sent via email using .NET SmtpClient appeared at the bottom of the email rather than attachment in Lotus Note. I just don’t know how to figure it out ...