vote up 2 vote down star

What's the better way to insert cell comments in excel 2007 files programmaticaly using c# and .net 3.5?

flag

How are you currently working with the document? – Mitchel Sellers Oct 21 '08 at 17:46
I'm decompressing the open xml documents and writing the necessary comments?.xml by myself. I'm also writing the relationships, vmlDrawing docs and adding the legacyDrawing element in sheet?.xml. But when i compress the folder, change its extension to .xlsx and try open it in excel i get a error. – Adones Cunha Oct 21 '08 at 17:53

2 Answers

vote up 4 vote down check

I just did exactly that but with MS Word (using Microsoft.Office.Interop.Word

range.Comments.Add ( range, ref _categoryMessage );

So, I would suggest using Microsoft.Office.Interop.Excel and the similar method. Consider this from MSDN:

http://msdn.microsoft.com/es-es/library/microsoft.office.interop.excel.range.addcomment.aspx

Also see this too

link|flag
probably need to play with the editor to get the whole link to work – Lance Roberts Oct 21 '08 at 18:26
Thanks, Kenny. But when i do this my program is starting a process called excel. Does it means i need to have ms excel installed on my computer? – Adones Cunha Oct 21 '08 at 20:18
Yes. Sorry, these interop calls require Excel. – Kenny Oct 22 '08 at 11:14
vote up 0 vote down

Have you tried using VSTO ? You can easily load an Excel document and manipulate it. To add a comment to a cell, load the file, activate the worksheet, then select the cell as a range and set the comment.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.