Format Macro Message Box

R

rleonard

Is it possible to format message in Message Box, so that message or a word in Bold or different colors

Break message so that it appears on 2 line

thanks
Bob Leonar
[email protected]
 
F

Frank Kabel

Hi Bob
you can't do this with the standard message box. You have to create you
own userform

--
Regards
Frank Kabel
Frankfurt, Germany

rleonard said:
Is it possible to format message in Message Box, so that message or a
word in Bold or different colors?
 
S

Stuart

You can easily split the message to appear on multiple
lines, but you can't control bolds, etc. To make it
appear on 2 lines you can do this:

msgbox "hello" & chr(10) & "there"

Stuart

-----Original Message-----
Is it possible to format message in Message Box, so that
message or a word in Bold or different colors?
 
R

rleonard

Frank
To create my own userform in a Macro, what would the code be in Macro with questio

If OK,press Ok; Oherwise press cancel

if ok is pressed will rum application_prin

Thank
Bob Leonard
 
Top