Is it possible to resize a comment box that has been added via code?
I recorded the resize and added the code to my routine but it doesn't seem to like it
I recorded the resize and added the code to my routine but it doesn't seem to like it
Code:
With Selection.Offset(intCellShadeRow, intCellShadeCol)
.Interior.ColorIndex = intCellShade
.Font.ColorIndex = intCellShade
If strComment = "" Then
Else
.AddComment.Text strComment
.ShapeRange.ScaleHeight 0.2, msoFalse, msoScaleFromTopLeft
End If
End With