I'm trying to add a comment that should look something like:

MyName:
Comment by me

Here's my code:

Range("J11").Select
Range("J11").ClearComments
Range("J11").AddComment
Range("J11").Comment.Visible = False
Range("J11").Comment.Text Text:="MyName:" & Chr(10) & "Comment by me"

How do I get "MyName:" to show up in bold?

I tried using this but it does the whole comment box:

Range("J11").Comment.Shape.TextFrame.Characters.Font.Bold = True


Thanks!