M
mscertified
In an Access database I build an email body for Outlook. It is just a
concatenation of text strings and variables. Does anyone know how I could
vary the font and or boldness of selected pieces of the text? Here is
skeleton code:
Set olObject = CreateObject("Outlook.Application")
Set myNameSpace = olObject.GetNamespace("MAPI")
Set myFolder = myNameSpace.GetDefaultFolder(olFolderInbox)
Set myItem = olObject.CreateItem(olMailItem)
<creates variable Msg>
myItem.Body = Msg
myItem.Display
AppActivate myItem.Subject
Thanks.
concatenation of text strings and variables. Does anyone know how I could
vary the font and or boldness of selected pieces of the text? Here is
skeleton code:
Set olObject = CreateObject("Outlook.Application")
Set myNameSpace = olObject.GetNamespace("MAPI")
Set myFolder = myNameSpace.GetDefaultFolder(olFolderInbox)
Set myItem = olObject.CreateItem(olMailItem)
<creates variable Msg>
myItem.Body = Msg
myItem.Display
AppActivate myItem.Subject
Thanks.