Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 36
Default How to change comment Box width and high

Hi All

How to change comment Box width and high.

Below is records vba, but Selection.ShapeRange.ScaleWidth have error.
How to change set comment Width ?


Sub Macro1()
'

Range("S19").AddComment
Range("S19").Comment.Visible = true
Range("S19").Comment.Text Text:="e:" & Chr(10) & ""
Selection.ShapeRange.ScaleWidth 5.05, msoFalse,
msoScaleFromBottomRight
Selection.ShapeRange.ScaleWidth 1.24, msoFalse,
msoScaleFromTopLeft
Range("S19").Comment.Shape.Select True
Range("S19").Comment.Text Text:="e:" & Chr(10) & "zxdfdf"
Range("S23").Select
End Sub
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,934
Default How to change comment Box width and high

I'm not 100% sure what height and width you ultimately want, but here is
some code for you to look at that adds the comment and sets the text, height
and width for it...

Sub AddComment()
With Range("S19")
On Error Resume Next
.Comment.Delete
On Error GoTo 0
.AddComment
With .Comment
.Visible = True
.Shape.TextFrame.Characters.Text = "Line One" & Chr(10) & "Line Two"
.Shape.Width = 75
.Shape.Height = 100
End With
End With
End Sub

Note: The With/End With blocking cuts down on a whole lot of typing.

--
Rick (MVP - Excel)


"moonhk" wrote in message
...
Hi All

How to change comment Box width and high.

Below is records vba, but Selection.ShapeRange.ScaleWidth have error.
How to change set comment Width ?


Sub Macro1()
'

Range("S19").AddComment
Range("S19").Comment.Visible = true
Range("S19").Comment.Text Text:="e:" & Chr(10) & ""
Selection.ShapeRange.ScaleWidth 5.05, msoFalse,
msoScaleFromBottomRight
Selection.ShapeRange.ScaleWidth 1.24, msoFalse,
msoScaleFromTopLeft
Range("S19").Comment.Shape.Select True
Range("S19").Comment.Text Text:="e:" & Chr(10) & "zxdfdf"
Range("S23").Select
End Sub


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3
Default How to change comment Box width and high

Hi All
Yes. Also how to set font name and font size ?

Sub AddComment()
With Range("A1")
On Error Resume Next
.Comment.Delete
On Error GoTo 0
.AddComment
With .Comment
.Visible = False
.Shape.TextFrame.Characters.Text = "Line One" & Chr(10) & "Line
Two"
.Shape.Width = 500
.Shape.Height = 200

End With
End With
End Sub



On 9月25日, 下午10時43分, "Rick Rothstein"
wrote:
I'm not 100% sure what height and width you ultimately want, but here is
some code for you to look at that adds the comment and sets the text, height
and width for it...

Sub AddComment()
* With Range("S19")
* * On Error Resume Next
* * .Comment.Delete
* * On Error GoTo 0
* * .AddComment
* * With .Comment
* * * .Visible = True
* * * .Shape.TextFrame.Characters.Text = "Line One" & Chr(10) & "Line Two"
* * * .Shape.Width = 75
* * * .Shape.Height = 100
* * End With
* End With
End Sub

Note: The With/End With blocking cuts down on a whole lot of typing.

--
Rick (MVP - Excel)

"moonhk" wrote in message

...

Hi All


How to change comment Box width and high.


Below is records vba, but Selection.ShapeRange.ScaleWidth *have error.
How to change *set comment Width ?


Sub Macro1()
'


* *Range("S19").AddComment
* *Range("S19").Comment.Visible = true
* *Range("S19").Comment.Text Text:="e:" & Chr(10) & ""
* *Selection.ShapeRange.ScaleWidth 5.05, msoFalse,
msoScaleFromBottomRight
* *Selection.ShapeRange.ScaleWidth 1.24, msoFalse,
msoScaleFromTopLeft
* *Range("S19").Comment.Shape.Select True
* *Range("S19").Comment.Text Text:="e:" & Chr(10) & "zxdfdf"
* *Range("S23").Select
End Sub


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
Insert Comment in Current Call and set then width moonhk[_2_] Excel Programming 1 September 25th 09 10:46 AM
Change Cell Width WITHOUT changing Column width dww701 Excel Discussion (Misc queries) 1 January 12th 09 10:52 PM
change the color of a number when it gets too high EJRI Excel Discussion (Misc queries) 1 September 1st 06 10:44 PM
Bar charts: change color of a bar if value too high? antoine Charts and Charting in Excel 1 April 3rd 06 06:21 PM
How to change Macro security level very high to low... areddy[_19_] Excel Programming 1 November 3rd 05 10:37 AM


All times are GMT +1. The time now is 02:29 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"