Home    
Log In    
Share Code    
Join    

Navigation
 Skip Navigation Links.

Forums
Skip Navigation Links.

Search

 

Advertisement
 
VB.NET Source Code > Get Alphabet Letter from Number Source Code
Details
Author: ptaylor
Views: 3262

Get Alphabet Letter from Number
Description
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
 
 
Code:
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





Comments


If you log in you can add a comment of your own!
 
 
Welcome Guest
 
  Log In Name
 
  Password
 
 
Statistics
Your Details: Not Logged In
  Join Date: N/A
  Last Logon: N/A
  Code Snippets: N/A
  Code Comments: N/A
  Forum Posts: N/A
  Forum Subjects: N/A

Site Wide
  Code Snippets: 32
  Code Comments: 2
  Forum Posts: 52
  Forum Subjects: 24
 
Random Code
Maximum Characters in an Unbound Textbox
Maximum Characters in an Unbound Textbox In VB6 a....

Language: VBA

 
Advertisement


All the Source Code and Tutorials on this site are free for you to use as you require.