Dlls to access Notes and Domino Server Database [closed] - c#

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
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 can just provide the Domino Server name through which i can get all mailboxes.

I think the dll you are looking for is nnotes.dll. If you have lotus notes installed visual studio should pick it up automatically for you to add in your references.
All the documentation for the api is here --> http://www-12.lotus.com/ldd/doc/uafiles.nsf/docs/DESIGNER70/$File/prog2.pdf

Related

add uploading features in sharepoint 2010 [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
how can i add this features in SharePoint 2010? plz help me
When file is uploaded to document library or an existing file edited and check-in then it should sync up with to folder on network drive.
If new file is uploaded the same file should be immediately available on network drive and same for delete and update
You need to create Event for Item Added, Item Updated and Item Deleted.
And all these events will be in Features. For creating feature, i would refer visual studio 2010, it will create all the files for features. You just need to create events.
Let me correct if you didn't want code.
Thanks
You can do this by mapping the document library to the map drive on local computer..
Please correct me if this is not your requirement
http://ashrafhossain.wordpress.com/2012/02/23/using-sharepoint-document-library-as-a-network-drive/

How to log in in ftp account using c#? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to log in to an ftp account and display the files or directories in fileview control.
What is the best approach to do it?
I am able to do it but some security issues are arises like if you are using your username and password in the URL, the location of the file also displays your credentials you've provided..
I want to connect the fileview without loging in in the log in dialog that appears.
You could take a look at this FTP client + control:
http://www.blackbeltcoder.com/Articles/client/an-ftpclient-class-and-winform-control

Open gmail inbox in c# windows application [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to open my gmail inbox in C# code.I will give my gmail username and password. It should open my inbox automatically.
How can I do this?
As many of the comments above have said, Gmail has many existing APIs for accessing it https://developers.google.com/google-apps/gmail/. There are many libraries available for accessing these APIs, including previous questions on stackoverflow like https://stackoverflow.com/questions/1544895/imap-library-for-net and How to send mails through smtp in c#.

How to put users in queue using C# and ASP.NET [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have created a dynamic data website in visual studio 2010 using C# and ASP.NET
When a user creates a request (for example a request for software installation), i would like that request to go into some kind of queue. So that i can check the users request and either allow or deny it.
Can someone help me with this ?
Store all request in a database, and add a flag that it has not been processed

C# program Time synchronization between Windows and linux [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to add a function in my C# program that can synchronize the time between linux and windows, is there any way to do this?
One solution is to run an ntp server on the Linux server (many distributions either include one or make it easy to install), then use some sort of NTP client from within your program. One approach to the .NET side is here, but instead of using a public time server, you would want to use the address of the Linux server.

Categories