C#でMSWordドキュメントを開こうとしています。ただし、openメソッドは、読み取り専用モードでドキュメントを開きます。変更をデータベースに保存できるように、iの別のコピーを作成せずにファイルを書き込みモードで開く必要があります。ファイルを開くためのコードは次のとおりです。
public void def()
{
Word.Application app = new Word.Application();
Word.Document dd = app.Documents.Open("C:\\hi12.docx", ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing,ref repair);
dd.TrackRevisions = true;
dd.CommandBars["Reviewing"].Controls["Reviewing Pane"].Execute();
int count = dd.Words.Count;
dd.Close(ref Nothing, ref format, ref Nothing);
}