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
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