add uploading features in sharepoint 2010 [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 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/

Related

How to open .chm help file in 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 9 years ago.
I have opened .chm file in c# but it is showing This program cannot display webpage error .
I have edited register and my path does not contain any special character , can any one help me out of this .
Error Details :
This program cannot display the webpage
Most likely causes: You are not connected to the Internet. The website is encountering problems. There might be a typing error in
the address.
What you can try:
Check your Internet connection. Try visiting another website to make sure you are connected.
Retype the address.
Go back to the previous page.
More information More information**
The issue may be because the .chm is on a network share and not local, as Windows can only open them if they're local files. It was patched as a security issue apparently.
The usual way around this is to install a copy of the .chm with your app.

Run project or .cs file developed on other computer [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 several projects and .cs files developed on other computer.
How can I run all of them on different computer? What if I already have project with same name on it?
Thank you in advance!
Just copy the whole directory of the solution and open in visual studio? Projects aren't linked to the machine they are running on. The only issue you might have is with installed components (like crystal reports or devexpress) or Linked Projects with an absolute location (basically stuff which doesn't reside the the solutions directory)
If you already have projects (with different paths) but with the same name, just make sure you open the right one. if the paths are the same well just like with files you'll overwrite them.
There isn't anything special about source code, it's just files on the machine

The process cannot acess the file as it is used by other process when trying to delete files from a directory [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.
Hi I am trying to delete files from a directory.It is able to delete the first file ,but after that
it is not able to delete other files.It is showing error message "the process cannot access the file as it used by other process.
My code for deleting is
foreach(FileInfo file in files)
{
file.delete()
}
Please help
The operating system will not let you delete a file in use by another process.
Use this tool to find out what process is accessing the files you are trying to delete:
Process Explorer v15.3

create .msi or setup file in C# 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 10 years ago.
How can I create either .msi file or setup file from the application I have created in VC# 2010. Please help me.
In the same solution as your executable package, create a "Setup" project
http://msdn.microsoft.com/en-us/library/19x10e5c.aspx
Create a Setup project in Visual Studio 2010-Creating a Setup Project and adding File Types.mp4 - YouTube .
Deployment Tasks and Walkthroughs in msdn is very useful.

Dlls to access Notes and Domino Server Database [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 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

Categories