View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Francis Hookham Francis Hookham is offline
external usenet poster
 
Posts: 125
Default Bold text in MsgBox

Sub MsgTest()
StartMessage = MsgBox("Can this line of text be bold" _
& vbNewLine & "while other lines are plain" _
& vbNewLine & "and others italic?" _
& vbNewLine & " " _
& vbNewLine & "Is it possible for a word within a line to be bold?"
_
& vbNewLine & " " _
& vbNewLine & "Thank you" _
& vbNewLine & " " _
& vbNewLine & "Francis Hookham" _
, 64, "Bold query")
End Sub