Well this used to be my generate button:

vb Code:
  1. Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  2.  
  3.         Dim Low As Integer = 1
  4.         Dim High As Integer
  5.         High = TextBox1.Text
  6.         Low = TextBox2.Text
  7.  
  8.         For i As Integer = Low To High
  9.             'Add the numbers to the collection.
  10.             list.Add(i)
  11.         Next i
  12.         Dim rand As New Random
  13.         Dim index As Integer
  14.         Dim item As Object
  15.  
  16.         'Display the items in random order.
  17.         'While list.Count > 0
  18.         'Choose a random index.
  19.         index = rand.Next(0, list.Count)
  20.  
  21.         'Get the item at that index.
  22.         item = list(index)
  23.  
  24.         'Remove the item so that it cannot be chosen again.
  25.         list.RemoveAt(index)
  26.  
  27.         'Display the item.
  28.         TextBox3.Text = item.ToString
  29.         ListBox1.Items.Add(TextBox3.Text)
  30.         'End While
  31.         Form3.Close()
  32.         Form3.Show()
  33.         tmrWait.Interval = 5000
  34.         tmrWait.Start()
  35.  
  36.  
  37.     End Sub

And more specifically these two lines:
vb Code:
  1. TextBox3.Text = item.ToString
  2.         ListBox1.Items.Add(TextBox3.Text)

This would then put the generated number in the listbox and textbox. The reason I need it in both is that I duplicate the text from the textbox and copy it to another form that is my display screen.

That help a bit more?