Subscribe to Subscribers
Talk to Webmaster Tony John


Forums » .NET » .NET »

Make Word 2007(.docx) settings using C#


Posted Date: 30 Jun 2011      Posted By:: Pramod     Member Level: Gold    Member Rank: 506     Points: 5   Responses: 0



Hi,

I need to set word 2007 options thru C# program.
For example Word Options-->Display-->Show document toolTips on Hover.

If we set it it won't disaplay toolTip for document differences trackings ,ex delete/inserted along with doc owner name when we mouse hover on the tag.


FYI----

For comparing 2 docx files I'm using below code

Microsoft.Office.Interop.Word.Application app = new Microsoft.Office.Interop.Word.ApplicationClass();

Microsoft.Office.Interop.Word.Document doc = app.Documents.Open(ref file1,......)

doc.SaveAs(ref ComparedOutput, ....);
doc.TrackRevisions = true;

doc.ShowRevisions = true;

doc.Compare(file2,...);
doc.Close(...);
app.quit(...);


This generates output docx with differences marked with baloon tags, my requirement is to remove ToolTip when mouse hover on these tags.

please provide me the solution.




Responses


No responses found. Be the first to respond and make money from revenue sharing program.

Post Reply
You must Sign In to post a response.

Next : This is code i used to move values from permenet to mail
Previous : How to attach file upto 10 MB file as an attachment
Return to Discussion Forum
Post New Message
Category:

Related Messages



Follow us on Twitter: https://twitter.com/dotnetspider

Active Members
TodayLast 7 Daysmore...

Awards & Gifts
Copyright © SpiderWorks Technologies Pvt Ltd., Kochi, India
2005 - 2012 All Rights Reserved.
.NET and other trademarks mentioned in this site belong to Microsoft and other respective trademark owners.
Articles, tutorials and all other content offered here is for educational purpose only.
We are not associated with Microsoft or its partners.