lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


Hello

I am writing a script that uses Luacom to create an Excel spreadsheet.

I am stuck on an annoying problem. I want to write a comment to a cell. I can get the comment red triangle to appear in my spreadsheet and I can set the name of the author, but the comment text body that I am trying to set is always missing.

sheet.Cells(1, 10).AddComment("Test", "anAuthor")
sheet:Range("E5").AddComment("Test", "anAuthor")

Both of these lines work in they dont generate an error and both show the author string but both do not show "Test" in the spreadsheet

Is this a luacom bug or am I doing something wrong here ?  Any help from a luacom expert would be appreciated, thanks

Geoff