Gruppe
Allgemein
Problem
Wie kann ich erreichen, daß der Anwendername in einem Kommentar nicht fett gedruckt wird?
StandardModule: Modul1
Sub NewComment()
Dim sComment As String
sComment = InputBox( _
prompt:="Bitte Kommentar eingeben:")
If sComment = "" Then Exit Sub
With ActiveCell
.AddComment
.Comment.Visible = False
.Comment.Text _
Text:=Application.UserName & _
":" & vbLf & sComment
End With
Application.DisplayCommentIndicator = _
xlCommentIndicatorOnly
End Sub