Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
On Sat, 19 Nov 2005, Norman Jones wrote:
See Debra Dalgleish at: http://www.contextures.com/xlcomments03.html#Resize Thanks. This is what I ended up with: Sub AddComment(S As String, R As Integer, C As Integer) ' puts properly sized comment in cell. sheet must be selected. ' arg: S - comment string ' R,C - row and column of cell With Cells(R, C) .ClearComments .AddComment With .Comment .Text S With .Shape .TextFrame.AutoSize = True If .Width 300 Then .Width = 200 .Height = ((.Width * .Height) / 200) * 1.2 End If End With End With End With End Sub |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how do i reformat text size in all comment boxs to a default size | Excel Worksheet Functions | |||
setting comment defaults | Excel Worksheet Functions | |||
Adjusting comment box size by Macro | Excel Discussion (Misc queries) | |||
Excel 2003 - setting the Comment font size default | Excel Worksheet Functions | |||
setting standard comment size for all rows in a worksheet. | Excel Discussion (Misc queries) |