comment box

B

brackmeister

I have searched for the method needed to change the default size of a
comment box.

I know how to change the font and user name and shape of the box.

I also know how to change the size of a comment already entred by
dragging the bars and by increasing the size parameters. But all that I
change does not generate to the new comment box.

I need the comment box to open with a taller and wider box. Can anyone
tell me how to change the default to the size of a new comment box?

John
 
G

Gary''s Student

I don't think there is a way to change the default. You can accomplish the
same thing with:


Sub Macro1()
Selection.AddComment
Selection.Comment.Visible = True
Selection.Comment.Text Text:="Hello World"
Selection.Comment.Shape.Select
Selection.ShapeRange.Width = 150
Selection.ShapeRange.Height = 150
End Sub

Rather than using Insert > Comment
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top