Hi Expert!
I have written a macro which is sending an email using lotus notes, however I am not able to make the text Bold/Italic.
Could you please let me know if there is any command to make the text bold.
Thank you,
Harry
Printable View
Hi Expert!
I have written a macro which is sending an email using lotus notes, however I am not able to make the text Bold/Italic.
Could you please let me know if there is any command to make the text bold.
Thank you,
Harry
Using Visual Basic? :confused:
Vba?
Then you need advice/suggestions from the VBA folks. :)
Moved to Office Development.
It would help them to know what you are using. Excel VBA? Access VBA?
Could you please look into my issue. it is really urgent:(
Thank you so much in Advance
what is the code you are using now?
pete
My Code is working prefectly!
problem is in formatting the text
I.E.
Dim abc as string
abc="This is my text"
I want "This" should come in bold
How can I go ahead and bold this text?
what is the code for putting into "notes", does notes display html or rtf?
pete
It is in Rtf
try abc="{/bThis/b0} is my text"
not tested
p.
Nope it did not work!
check out this thread http://www.vbforums.com/showthread.p...bold+rich+text
p.
Thank you so much but again it did not help.
Let me share my coding with you
emails="[email protected]"
firstline = "Dear " & names & vbNewLine & vbNewLine
domNotesRichText.AppendText (firstline)
domNotesDocumentMemo.Send False, emails
Here I need "Dear" should come in bold
I tried the code from link you suggested, but it does not work.