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,