i am using this code
VB Code:
  1. Dim i As Integer
  2.    
  3.     Randomize
  4.     i = Rnd(List1.ListCount) * List3.ListCount
  5.     Label4.Caption = List3.List(i)
to display a random value of a list in a label. It works pretty good except ocassionally it will not put any thing in the label, leaving it blank. I was wondering if there is a solution for this?