Hallo,
Wie kann ich die Schriftgröße im Excelkommentar einstellen ?
Code:
excelobj.cells.item[1,1].Comment.text.font.Size:=14;
ist fehlgeschlagen.
Der VBA-Code lautet
'Schrift u.automatische Kommentargröße
With Cmt.Shape.TextFrame
.Characters.Font.Name = "Comic Sans MS"
.Characters.Font.Size = 14
.Characters.Font.ColorIndex = 32 'blau
.Characters.Font.Bold = True
.AutoSize = True
End With
Nimmersatt