Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default Comment Default Font Size

Hello,

Does anyone know how I can change the default font size of
the comment feature in Excel? It currently deaults to
size 8, which is hard to read so I always manually change
it to 10. Any suggestions would be appreciated.

John
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 52
Default Comment Default Font Size

You can change the font size of new comments by changing the settings in
your Control Panel. (Instructions for Windows XP)

1. Right-click on the desktop, and choose Properties
2. On the Appearance tab, click Advanced.
3. From the Item dropdown, choose Tooltip
4. Choose a font Size, click OK, click OK

Note -- this will also affect your Tooltips formatting

Or, you can use a macro to insert a comment with a specific font and format:
'======================================
Sub CommentAddOrEditTNR()
'adds TimesNewRoman comment or positions
'cursor at end of existing comment text
Dim cmt As Comment
Set cmt = ActiveCell.Comment
If cmt Is Nothing Then
ActiveCell.AddComment text:=""
Set cmt = ActiveCell.Comment
With cmt.Shape.TextFrame.Characters.Font
.Name = "Times New Roman"
.Size = 11
.Bold = False
.ColorIndex = 0
End With
End If
SendKeys "%ie~"
End Sub
'===========================

John M wrote:
Does anyone know how I can change the default font size of
the comment feature in Excel? It currently deaults to
size 8, which is hard to read so I always manually change
it to 10. Any suggestions would be appreciated.



--
Debra Dalgleish
Excel FAQ, Tips & Book List
http://www.contextures.com/tiptech.html

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to change the default (Insert) comment font size in Excel2007 Christian Excel Discussion (Misc queries) 3 September 10th 09 02:48 PM
Excel 2003 - setting the Comment font size default rickz Excel Worksheet Functions 3 July 16th 07 03:53 AM
default font size of comment Miri Excel Discussion (Misc queries) 3 January 21st 07 01:37 PM
Need feature to change font size default in COMMENT boxes. GED01 Excel Discussion (Misc queries) 1 April 3rd 06 02:20 PM
Default cell comment fill color and font size Shadowman13 Excel Discussion (Misc queries) 2 September 28th 05 08:16 PM


All times are GMT +1. The time now is 10:59 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"