in this
tutorial i will teach you how to add A-Z Char into listbox with just simple
code
For loop is really useful it save much time i is
variable 65 to 90 because if you add 65+25 it is equal to 90
What you need
- A brain
- Visual Studio
- Windows XP , VISTA , 7 or 8
- and add a listbox into form
it is helpful when you are making software from scratch These Tutorial are little bit short but might help very much for newbee
'Basically Character Start from 65 to 65 + 25 = 90 if you
hold alt and press 65 is = A
For i = 65 To 65 + 25
ListBox1.Items.Add(Chr(i))
Next
No comments:
Post a Comment