Hello,
I would like to print a checkmark and am using this code
g.drawstring Encodings.utf8.chr(2714), 100, 300
but I am not getting a checkmark, I am getting a funny character.
Is my code correct? If not kindly advise.
Thanks.
Lennox
Hello,
I would like to print a checkmark and am using this code
g.drawstring Encodings.utf8.chr(2714), 100, 300
but I am not getting a checkmark, I am getting a funny character.
Is my code correct? If not kindly advise.
Thanks.
Lennox
try Chr(10004) or Chr(10003)
more here -> https://unicode-table.com/en/search/?q=check+mark
Thanks Axel, works great.
Thanks again.
Lennox
you misunderstood how the Unicode character was being presented
g.drawstring Encodings.utf8.chr(&H2714), 100, 300
&H2714 = 10004
Thanks Dave,
Lennox