|
-
Feb 9th, 2003, 08:30 AM
#1
Thread Starter
Addicted Member
ASC or CHR or something like that...?
How do I convert from the number 65 to the letter A or the number 90 to the letter Z?
It's to go in a loop that runs from 65 to 90 creating 26 buttons lettered A to Z.
-
Feb 9th, 2003, 03:32 PM
#2
yay gay
(char)65 <- will do it
for (int i = 65; i < 90; i++) {
MessageBox.Show(Convert.ToString((char)i);
}
\m/  \m/
-
Feb 10th, 2003, 04:26 AM
#3
Thread Starter
Addicted Member
Thank you.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|