Is there any way to add the mouseover comment to a shape using vba code. I know you can do it through Insert -> Comment, but is there any VBA shape property for the comment field? Thanks
Rya
Either of these methods will work:
myShape.CellsSRC(visSectionObject, visRowMisc, visComment).Formula = """My
Comment"""
myShape.CellsU("comment").Formula = """My Comment"""
--
Bill K.
Microsoft Corporation
This posting is provided "AS IS" with no warranties, and confers no rights.
Ryan said:
Is there any way to add the mouseover comment to a shape using vba code.