CriticalRocket

Untitled

May 9th, 2013
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.37 KB | None | 0 0
  1. Dim postcode2 As String
  2.     Dim arraynummer As Integer
  3.     Dim selecteditem As Integer
  4.  
  5. arraynummer = 0
  6.         aantal = Lijst1.Items.Count
  7.  
  8.         Dim postcodes(aantal - 1) As String
  9.  
  10.         Lijst1.Items.CopyTo(postcodes, 0)
  11.         Array.Sort(postcodes)
  12.        
  13.         For x = 0 To postcodes.Length - 1
  14.             Lijst2.Items.Add(postcodes(x))
  15.         Next x
Advertisement
Add Comment
Please, Sign In to add comment