|
I'm confused, is all you want this....
[php]
Randomize
Dim rand as integer
For I = 1 to 100
rand = Int((Rnd * 3) + 1)
If rand = 1 then
listbox.Items.Add("Rock")
else if rand = 2 then
listbox.Items.Add("Paper")
else
listobx.Items.Add("Scissors")
end if
Next I
[/php]
__________________
|