Consulting

Results 1 to 5 of 5

Thread: Resize Comment

  1. #1

    Resize Comment

    Hi,

    i would like to resize the comments via coding, can anybody help me with this please? Thanks a lot.

  2. #2
    Distinguished Lord of VBAX VBAX Grand Master Bob Phillips's Avatar
    Joined
    Apr 2005
    Posts
    25,453
    Location
    Quote Originally Posted by hylw
    Hi,

    i would like to resize the comments via coding, can anybody help me with this please? Thanks a lot.
    You can do it manually by just going inm to Edit Comment and then clicking on one of the box handles and dragging it.

  3. #3
    Hi ,

    Thanks for reply. But Is it possible to do by coding? if anyone know please advise. Thanks.

  4. #4
    Distinguished Lord of VBAX VBAX Grand Master Bob Phillips's Avatar
    Joined
    Apr 2005
    Posts
    25,453
    Location
    Quote Originally Posted by hylw
    Hi ,

    Thanks for reply. But Is it possible to do by coding? if anyone know please advise. Thanks.
    Like this


    Dim cmt As Comment
        Set cmt = Range("F4").Comment
        With cmt
            .Shape.Width = 200
            .Shape.Height = 100
        End With

  5. #5
    Thanks for helping, xld. Have a nice day!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •