Format Italics

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there any way to use the format function to put something in italics? For
example, Format("abcd", ">") will return "ABCD". Is there a character to
insert instead of ">" that will return italics?

If not, I'm using a SendObject command to open an email, and the pre-defined
body of the message has a disclaimer at the end, which I would like to put
into italics. Is there any way to do that?

Thanks in advance
 
There's definitely no way using the Format function to get italics (nor
bold, nor a specific font)

I don't believe there's any way to accomplish what you're looking to do
using SendObject.
 
Is there any way to use the format function to put something in italics? For
example, Format("abcd", ">") will return "ABCD". Is there a character to
insert instead of ">" that will return italics?

If not, I'm using a SendObject command to open an email, and the pre-defined
body of the message has a disclaimer at the end, which I would like to put
into italics. Is there any way to do that?

Thanks in advance

I don't even know if this would be possible, but about the only way I
can think of to do this is to construct the entire message in HTML,
with the appropriate tags embedded in the text that you'll be sending.
This will of course require that you persuade your mail software to
format the message in HTML.

John W. Vinson[MVP]
 
Thanks for the replies, I think it would probably be more difficult than it's
worth to pull off. Thanks again!
 
Back
Top