I'm trying to open an existing Word document that is actually located in a SharePoint library in a Windows application (WinForms).

If I open the document using Internet Explorer, the document is in readonly but I have a "Edit Document" button in Word application that I can use to be able to save my document (remove the read-only).

I've tried the following in my Windows application to open a SharePoint document:

System.Diagnostics.Process.Start("http://.../MyFile.docx");

This is actually opening my document in Word but I have a problem. If I open my document using this method, the document opened is in readonly and I do not see the "Edit Document" button... How can I resolve this problem?

Thanks,

link|improve this question

75% accept rate
feedback

2 Answers

Can you try clicking on the "Save As..." option in Word in order to get an editable version of the document?

link|improve this answer
feedback

I think you will need to start ms word (winword.exe) as the program with an argument to open the document.

Take a look at the KB article: http://support.microsoft.com/kb/210565

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.