|
|
|
|
|
Author:
|
ptaylor
|
|
Views:
|
3262
|
|
|
Get Alphabet Letter from Number
|
|
|
How to get a Letter of the alphabet from a number and increment.
It will Loop and get each number between 0 and 25 with the associated letter then the Message Box will show the FULL Alphabet
|
|
|
|
|
Dim Value As String = "" For L As Integer = 0 To 25 Value += ChrW(65 + L) Next MsgBox(Value)
|
|
|
|
|
|
Date Added:
16/05/2008 16:39:22
|
|
|
|
|
|
|
Your Details: Not Logged In
Join Date: N/A
Last Logon: N/A
Code Snippets: N/A
Code Comments:
Forum Posts: N/A
Forum Subjects: N/A
Site Wide
Code Snippets: 32
Code Comments:
Forum Posts: 52
Forum Subjects: 24
|
|
|
|
|
|
|
|
|
|
|