View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Jim Cone Jim Cone is offline
external usenet poster
 
Posts: 3,290
Default Bold text in MsgBox


No, you can use upper case/lower case characters, but that is all the
formatted allowed to the font in a MsgBox.
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware
(Excel Add-ins / Excel Programming)


"Francis Hookham" wrote in message ...
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