hi all,
Does anyone know how to write this symbal (°C) in vb6? Any tips are welcome.
regards
cocoonwls
Printable View
hi all,
Does anyone know how to write this symbal (°C) in vb6? Any tips are welcome.
regards
cocoonwls
The degree sign (°) is Chr$(176). You don't need to use that function, though... you can enter it directly just as you did in your post.
lblAA.Caption = Format$(AA, "##.####") & Chr(176)
Or just:
"°C"
Hi all,
Thanks,its work for me:D
best regards
cocoonwls