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)
How do I inset the degree symbol
Arthg2000
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"
vcooking