How do I turn a number into a character - e.g. 1 into A?
Thanks
Printable View
How do I turn a number into a character - e.g. 1 into A?
Thanks
Chr(1)
which isnt A
A is 65
a is 97
lookup "ascii chart" in msdn to get the list
I think he means their ordinal values rather than ASCII.
VB Code:
MessageBox.Show(Convert.ToChar(myval + 64).ToString())
I have now solved this issue.
Thank you all
Add Resolved to the thread title. Ya never know...
how do I do that, where is the link please?
From Thread tools, top right, choose mark as resolved, and edit the thread title.
Bob