How to list mailbox from Domino Server using LDAP in C#
Can you suggest me some link where i can get some idea i.e how to list mailbox using LDAP using C# I am using “Interop.Domino.dll”
Answer Question
| February 24, 2010 10:30 AM
C#, Domino Server, Domino Server 8.5, LDAP
Can you suggest me some link where i can get some idea i.e how to list mailbox using LDAP using C# I am using “Interop.Domino.dll”
How to access the ID Vault documents using java or c API
Hi all, Based on the new feature(ID vault) implemented in domino 8.5, i would like to access this new feature(idv vault) using java api. Like i want to mark it for inactive in id vault database for a particular user. and how to change the name. Regards, Sankar
Answer Question
| August 3, 2009 8:32 AM
API, C#, ID Vault, Java, Lotus Domino, Lotus Domino 8.5, Lotus Domino 8.x
Hi all, Based on the new feature(ID vault) implemented in domino 8.5, i would like to access this new feature(idv vault) using java api. Like i want to mark it for inactive in id vault database for a particular user. and how to change the name. Regards, Sankar
Dlls to access Notes and Domino Server Database.
Hi, I need to create an application using C# such that i can access all the user’s mailboxes existing on Server. So kindly provide me the API which will allow me to access each mailbox( nsf files) of each user stored on the Domino Server. Basically i am looking for an API by which i [...]
Answer Question
| July 30, 2009 4:32 AM
C#, Domino Server, Domino Server 8.5
Hi, I need to create an application using C# such that i can access all the user’s mailboxes existing on Server. So kindly provide me the API which will allow me to access each mailbox( nsf files) of each user stored on the Domino Server. Basically i am looking for an API by which i [...]
Pocket PC: How to stop a form from closing
Using C#, on a WinForm, to stop a form from closing, I simply have to put this line in the public Form1(): this.Closing += new System.ComponentModel.CancelEventHandler(this.Form1_Closing); and add this bit: public void Form1_Closing(object sender, System.ComponentModel.CancelEventArgs e) { if (MessageBox.Show(“Are you sure you want to exit?”, “Confirm exit”, MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button1) == DialogResult.No) { e.Cancel = [...]
Answer Question
| July 29, 2009 9:45 PM
C#, Pocket PC, WinForms
Using C#, on a WinForm, to stop a form from closing, I simply have to put this line in the public Form1(): this.Closing += new System.ComponentModel.CancelEventHandler(this.Form1_Closing); and add this bit: public void Form1_Closing(object sender, System.ComponentModel.CancelEventArgs e) { if (MessageBox.Show(“Are you sure you want to exit?”, “Confirm exit”, MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button1) == DialogResult.No) { e.Cancel = [...]
sql in C#
How can I attach And detach a database file to sqlserver in C# code ? please give me an example of this
Answer Question
| July 15, 2009 3:05 PM
C#, Database Files, SQL Server database
How can I attach And detach a database file to sqlserver in C# code ? please give me an example of this
How to parse a HTML document in C#?
I want to parse a HTML document in C#. i know that HTML and XML are not very compatible and parsing HTML documents with a XML parser will almost fail because of strict XML format. i googled and find some very nice HTML parsers written by several people. but i want to know: Does .NET [...]
Answer Question
| July 14, 2009 1:08 PM
C#, HTML, HTML Parsing, Parsing
I want to parse a HTML document in C#. i know that HTML and XML are not very compatible and parsing HTML documents with a XML parser will almost fail because of strict XML format. i googled and find some very nice HTML parsers written by several people. but i want to know: Does .NET [...]
Fetching Mail Stores From Domino Server
I am making one application in C# .Which will fetch mail stores from Domino Server and Display it in List Box. Currently i am using “Interop.Domino.dll “.But don’t know much about it.
Answer Question
| July 7, 2009 10:09 AM
.NET applications, C#, ListBox, Lotus development
I am making one application in C# .Which will fetch mail stores from Domino Server and Display it in List Box. Currently i am using “Interop.Domino.dll “.But don’t know much about it.
Connecting to Domino Server.
I am making one Login Form to connect Domino server using C#. Facing problem creating login.How should i go ahead?
Answer Question
| July 7, 2009 10:06 AM
C#, Domino Server, Lotus development
I am making one Login Form to connect Domino server using C#. Facing problem creating login.How should i go ahead?
Reading content of a file uploaded by user
Hi everyone, new user here. I’ve been finding it harder and harder to get answers at EE for certain questions, and am hoping someone here will be able to help me! Using asp.net and c#, my site allows users to save the innerhtml of a certain div to a file. Now I need the reverse. [...]
Answer Question
| June 30, 2009 9:03 PM
ASP.NET, C#
Hi everyone, new user here. I’ve been finding it harder and harder to get answers at EE for certain questions, and am hoping someone here will be able to help me! Using asp.net and c#, my site allows users to save the innerhtml of a certain div to a file. Now I need the reverse. [...]
how wrap marathi word in next Line in crystal report 8.5
hi i m using crystal report 8.5 i have simple data report in marathi for this i m using ISM when i saw a preview of that report in crystal report it is ok but when i saw a report in crystal report viewer (in c# dot net) marathi word is cut at the end [...]
Answer Question
| June 29, 2009 12:34 PM
.NET, C#, Crystal Reports, Crystal Reports 8.5, Crystal Reports Word Wrapping
hi i m using crystal report 8.5 i have simple data report in marathi for this i m using ISM when i saw a preview of that report in crystal report it is ok but when i saw a report in crystal report viewer (in c# dot net) marathi word is cut at the end [...]
grid view connection to a data in a table ?!
Hello , I’m julien , beginner in visual studio 2008 using c# language I Have this task that I seem to be stuck in ! I’ve created a database using sql server express 2005 of 4 tables :”BOOKS , AUTHORS , CATEGORIES and PUBLISHERS “. I’ve connected this database to my gridview in visual studio [...]
Answer Question
| June 24, 2009 7:20 AM
C#, GridView, SQL Server 2005 Express, Visual Studio 2008
Hello , I’m julien , beginner in visual studio 2008 using c# language I Have this task that I seem to be stuck in ! I’ve created a database using sql server express 2005 of 4 tables :”BOOKS , AUTHORS , CATEGORIES and PUBLISHERS “. I’ve connected this database to my gridview in visual studio [...]
How to make a DLL in C# .NET
i will like to make a dll in c# .net, and use it in another project. But what i want is when i’m debugging the new project not to see the code of the DLL. is that posible?
Answer Question
| May 26, 2009 5:25 AM
.NET development, C#, DLL
i will like to make a dll in c# .net, and use it in another project. But what i want is when i’m debugging the new project not to see the code of the DLL. is that posible?
Programmically access Lotus Notes mail with C#
I m accessing the notes mail using notesDocument, I am able to get all teh properties of mail but if I want to access the mail like it is manually done, (color changes). how would I access the mail in that way.. My main problem is , I have infected file attach to lotusnotes mail [...]
Answer Question
| May 19, 2009 9:20 AM
C#, Lotus development, Lotus Notes email
I m accessing the notes mail using notesDocument, I am able to get all teh properties of mail but if I want to access the mail like it is manually done, (color changes). how would I access the mail in that way.. My main problem is , I have infected file attach to lotusnotes mail [...]
question: T-SQL stored procedure conversion to C# CLR assembly….
I’m wondering why it is difficult to find an example ( in literature or Internet ) example of converting a T-SQL procedure which contains “out” variables into identical C# CLR stored procedure. Is there something which prohibits this conversion ? If not, can someone provide or cite example ? Real world T-SQL procedures may tend [...]
Answer Question
| May 19, 2009 4:49 PM
C#, CLR, T-SQL, T-SQL Stored Procedures
I’m wondering why it is difficult to find an example ( in literature or Internet ) example of converting a T-SQL procedure which contains “out” variables into identical C# CLR stored procedure. Is there something which prohibits this conversion ? If not, can someone provide or cite example ? Real world T-SQL procedures may tend [...]
How a S/W in c# working in N/W accesses access database from other computer not having access
hi, my project code works in network when i place my database of access in the computer which has ms-access, but wht to do when the other comp, with which i want to connect doesn’t have ms-access, then how will i connect to it and run my project?
Answer Question
| May 19, 2009 12:54 PM
Access Database, C#, Microsoft Access, Network connectivity
hi, my project code works in network when i place my database of access in the computer which has ms-access, but wht to do when the other comp, with which i want to connect doesn’t have ms-access, then how will i connect to it and run my project?
How to run Siebel service from external C# application?
how to run siebel service from external c# application
Answer Question
| May 13, 2009 6:18 AM
C#, CRM services, Siebel
how to run siebel service from external c# application
How to open a new email in Lotus Notes using C#
I am writing a .Net c# windows application where I need to open a new email in the Lotus Notes mail client. Any ideas on how this could be done
Answer Question
| May 6, 2009 7:57 PM
.NET, C#, Lotus Notes, Windows Application, WinForms
I am writing a .Net c# windows application where I need to open a new email in the Lotus Notes mail client. Any ideas on how this could be done
Image Viewer with C# .NET
Hi all! I want to make an image viewer with following functionalities without using any third party controls. 1. Load multipage tiff image in picturebox. 2. Zoom,rotate left and rotate right. 3. moving between pages, 4. delete particular page 5. grayscal image and image cropping and convert tiff image into pdf. please help me and [...]
Answer Question
| October 13, 2011 6:04 AM
C#, C# .NET, Image Viewer using C# .NET
Hi all! I want to make an image viewer with following functionalities without using any third party controls. 1. Load multipage tiff image in picturebox. 2. Zoom,rotate left and rotate right. 3. moving between pages, 4. delete particular page 5. grayscal image and image cropping and convert tiff image into pdf. please help me and [...]
Empty project in Visual Studio 2008
Can anyone tell me where the Empty Project is in Visual Studio. I am using C# express and there is this fold, but not in my 2008 Visual Studio
Answer Question
| April 29, 2009 2:55 AM
C#, Visual Studio, Visual Studio 2008
Can anyone tell me where the Empty Project is in Visual Studio. I am using C# express and there is this fold, but not in my 2008 Visual Studio
Altering Lotus Notes “Delivery Failure Report” using C#
I am writing application in C#.Net 2.0 to read mails in Lotus Notes database and upload into another application. Emails can come to this mailbox from many sources. There are also other applications that send mails with FROM address as this mailbox while sending to other usersgroups and in this process, this mailbox gets DELIVERY [...]
Answer Question
| April 29, 2009 1:24 AM
Alter Delivery Failure Report, C#, Delivery Failure Report, Edit Delivery Failure Report, Lotus development, Lotus Notes Database, Lotus Notes email
I am writing application in C#.Net 2.0 to read mails in Lotus Notes database and upload into another application. Emails can come to this mailbox from many sources. There are also other applications that send mails with FROM address as this mailbox while sending to other usersgroups and in this process, this mailbox gets DELIVERY [...]





