apache poi - Cell comment does not get displayed on MS office though it comes on open office -



apache poi - Cell comment does not get displayed on MS office though it comes on open office -

here sample code create tool tip cell

org.apache.poi.ss.usermodel.comment comment = drawing.createcellcomment(anchor); richtextstring strcmt = factory.createrichtextstring("tool tipssssssssssss"); comment.setstring(strcmt); comment.setauthor("rinkalkumar");

this part of code sets tool tip cell

problem gets displayed on open office not on ms office

any solutions overcome problem?

i using poi-3.6.

as noted in comments, trick solve problem upgrade newer re-create of poi (3.7 @ minimum, ideally 3.8 out, or 1 of it's betas now)

apache-poi

Comments

Popular posts from this blog

java - How to pass parameters between Request-Scoped Controllers? -

string - what is the difference between "some" == "some\0" and strcmp("some","some\0") in c++? -

actionscript 3 - Flex: moving a point with rotation doesnt change the point XY? -