Monday, June 10, 2013

VIsual basic.net add A-Z Char into listbox With simple code



 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

  1. A brain
  2. Visual Studio
  3. Windows XP , VISTA , 7 or 8
  4. and add a listbox into form
These Code Much help some one please 1+ it if you like my post
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