How do I inset the degree symbol

How do I inset the degree symbol into a text string I tried using chr(167) but, that didn't work. Thanks in advance.
Ken

Dim Outside_temp As New System.Drawing.Font("Arial", 8, FontStyle.Bold)

formGraphics.DrawString("Outside temp: " & out_temp & Chr(167), Outside_temp, Brushes.Black, 140, 10)



Answer this question

How do I inset the degree symbol

  • deepakleo2003

    Thanks for that tip.
  • Dan1

    instead of Chr(167), start a quote (")

    Hold down the ALT key and press 167, then add your end quote(")

    (This works in VB express using keypad numbers not top row numbers)

    result

    "o"



  • How do I inset the degree symbol