Microsoft
Software
Hardware
Network
Question : Need VB code to send out a Lotus Notes e-mail in monospaced font, such as COURIER NEW, not COURIER
How do I set "Courier New" as the font for richStyle.FontNotes?
richStyle.NotesFont=COURIE
R works but COURIER_NEW is not defined.
What I am looking for is a way to set a monospaced font when
composing a Lotus Notes email programmatically in VB. It doesn't
have to be using RichStyle, just the end result is I need a piece
of VB code that sends out a Lotus Notes email in a monospaced
font like COURIER NEW. Any help on this is greatly appreciated.
This almost works but cannot set a monospaced font:
Dim session As New NotesSession
Dim db As NotesDatabase
Dim doc As New NotesDocument(db)
Dim richStyle As NotesRichTextStyle
Dim richText As New NotesRichTextItem(doc, "Body")
Set db = session.CurrentDatabase
Call doc.AppendItemValue ("From", session.UserName)
Call doc.AppendItemValue ("Subject", Inputbox("Subject?"))
Set richStyle = session.CreateRichTextStyl
e
richStyle.NotesFont = FONT_COURIER
richStyle.FontSize = 14
Call richText.AppendStyle(richS
tyle)
newPara = Inputbox ("Paragraph of text for ""Body"" item")
firstPara = True
While newPara <> ""
If firstPara Then
firstPara = False
Else
Call richText.AddNewLine(2)
End If
Call richText.AppendText(newPar
a)
newPara = Inputbox ("Paragraph of text for ""Body"" item")
Wend
End of problem description.
Answer : Need VB code to send out a Lotus Notes e-mail in monospaced font, such as COURIER NEW, not COURIER
You need to use a GetNotesFont call:
richStyle.NotesFont = richText.GetNotesFont("Cou
rier New", True)
Random Solutions
How do I read/set Application.GetOption("New
database sort order") from ASP
Delete blank line from textarea
WRVS4000 Router in front of Cisco ASA
Raid 1 mirror Bad block discovered
SCCM OSD deployment to Hyper-v R2
SQLCommandBuilder - GetUpdateCommand, GetInsertCommand and GetDeleteCommand Questions
Formview insert doesnt insert data if I add postbackurl on button
Exchange 2007 Powershell - Set-MailboxDatabase add Journal Recipient that is a Distribution Group
Can a link a data point in an excel chart to another chart
how do i/can setup backup DC on an existing 2008 AD.