I made a little function that opens a WordDocument at a given file location. I’d like to enable the balloons when the document shows up.
Here’s the code so far:
public static Document OpenWordDocument(object fileName)
{
ApplicationClass application = new ApplicationClass();
object readOnly = false;
object isVisible = true;
object missing = Missing.Value;
application.Visible = true;
Document wordDocument = application.Documents.Open(ref fileName, ref missing, ref readOnly, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref isVisible, ref missing, ref missing, ref missing, ref missing);
wordDocument.TrackRevisions = true;
//Do something here the enable balloons
wordDocument.Activate();
return wordDocument;
}

TO

The main properties for enable the balloon is :
you can also add these setting
Be sure to have Microsoft Word 2010 or 2007 and the latest Microsoft.Office.Interop.Word.dll