Tooltips in Excel

sphipp

Member
def var cellrange as char initial "A1" no-undo.
def var excelappl as com-handle no-undo.

excelAppl:Range(cellrange):formula:clearcomments().
excelAppl:Range(cellrange):formula:addcomment("This is a comment").
 
Top