Sub Globals
'Declare the global variables here.
End Sub
Sub App_Start
Form1.Show
'Testing code
For i = 1 To 100
AddItemToListBox(Rnd(1,20))
Next
End Sub
Sub AddItemToListBox (item)
If Hashtable1.Contains(item) = False Then
Hashtable1.Add(item, "")
ListBox1.Add(item)
End If
End Sub