I am trying to open an existing Word document that is actually located in a SharePoint library in a Windows application (WinForms).
If I open a document using Internet Explorer, the document is in read-only mode, but I have an βEdit documentβ button in the Word application that I can use to save my document (delete it as read-only).
I 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 open document will be in read-only mode, and I do not see the "Edit document" button ... How can I solve this problem?
Thanks,
source share