Click here to Skip to main content
15,894,039 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi All,
I am just struck in one requirement.
Need to open the word document from the shared network drive or shared folder in the server, modify the document and save the document again back to the network shared drive or shared folder in the server bur not in the local drive.
I am using C# language.


Can it be possible ?If yes please explain me how to achieve this?

[/edit] unnecesary pre tags deleted [/edit]
Posted
Updated 14-Feb-13 21:39pm
v2

1 solution

Process myProcess = new Process();
Process.Start("winword.exe", "path");


for more details you can look at
Process Class[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900