i am using this codeto 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?VB Code:
Dim i As Integer Randomize i = Rnd(List1.ListCount) * List3.ListCount Label4.Caption = List3.List(i)


Reply With Quote
