What's the better way to insert cell comments in excel 2007 files programmaticaly using c# and .net 3.5?
|
|
|||||
|
|
|
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 |
||||||
|
|
|
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. |
|||
|
|
