View Single Post
  #1 (permalink)  
Old 04-16-2008
rscracker rscracker is offline
Jr. Member
 
Join Date: Apr 2008
Posts: 207
BRL$: -299.89
Thanks: 3
Thanked 0 Times in 0 Posts
Rep Power: 27
rscracker is on a distinguished road
Default make abc easy way :)

Ok this is how u would add abcdefghijklmnopqrstuvwxyz

need i listlox

LOWER CASE

Private Sub Form_Load()
For x = 65 To 90
List1.AddItem (Chr(x))
Next x
end sub


UPPER CASE

For x = 97 To 122
List1.AddItem (Chr(x))
Next x


Propz if u like xD


Current Promotions... Post a New Thread anywhere on Web Development Board to earn BRL$ 5 for every thread. Post a new Reply there and earn BRL$ 3 for every reply.
Important - Read before posting Please carefully read the Global Rules and Posting Rules for GPT / Buy - Sell Offers / Link Exchange sections before posting.

Last edited by rscracker; 04-27-2008 at 08:38 AM.
Reply With Quote