Question : How to change font with stringbuilder in VB.NET

Hello.  I have simple text that is being sent to clients via smtp email.   I need to format the text so that the columns line up correctly.  To do this, I think I need to use a font such at Helvetica.  How can I do this?

Here is my code:
            aMsg.From = aAddressFrom
            aMsg.Subject = theSubject
            aMsg.Body = mystringbuilder.tostring  ---> NEED TO FORMAT THIS TO HELVETICA

            Dim smtp As System.Net.Mail.SmtpClient = New System.Net.Mail.SmtpClient
            smtp.Host = myEmailServer
            smtp.Send(aMsg)

Answer : How to change font with stringbuilder in VB.NET

start with http://www.w3schools.com/html/html_tables.asp and http://www.htmlcodetutorial.com/tables/ and http://www.pagetutor.com/table_tutor/index.html

What I often do as a shortcut is to take a HTML editor (Visual Studio, frontpage, ...) and create a template of what I want.
Random Solutions  
 
programming4us programming4us