Hi there,
Without searching, I know only 3methods how to work with comment size:
1) Yours 'Autosize', which You already tested
...Comment.Shape.TextFrame.AutoSize = True
2) Increment size every time with multiply actual size:
...Comment.Shape.ScaleWidth 1.1, msoFalse, msoScaleFromTopLeft
...Comment.Shape.ScaleHeight 1.04, msoFalse, msoScaleFromTopLeft
3) Increment with static value:
...Comment.Shape.Height = .Comment.Shape.Height + 10
...Comment.Shape.Width = .Comment.Shape.Width+ 10
Hope it helps
Bookmarks