View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
JLGWhiz JLGWhiz is offline
external usenet poster
 
Posts: 3,986
Default Is it possible to format the text in a message box

It is not a normal facility of Excel or VBA to format message box text. If
it is done, it has to be done through the Windows platform and that means all
message boxes in all files will have that format. I would suggest using a
lable on a UserForm to do what you want.

"Nigel" wrote:

I would like to format some text in a message box and was wondering if that
would be possible

ie:

msgbox "Please select Country to view",vbokonly,"Test Message"

make the word country bold

thanks