Hi again!
Why is it that when I try to draw multiple strings in a list, it only draws one? How can I make it so that it draws all the strings at once? There must be a problem with the For Each loop. Thanks for the help in advance!

vb Code:
  1. Public Class Form1
  2.  
  3.     'EACH RANDOMTEXT HAS 3 PROPERTIES: TEXT, LOCATIONX, AND LOCATIONY.
  4.     'I AM TRYING TO CREATE AN EFFECT TO SCATTER TEXT TO SLOWLY COVER THE SCREEN.
  5.  
  6.     Dim F As New Font("Arial", 16, FontStyle.Bold)
  7.     Dim RandomTexts As New List(Of RandomText)
  8.  
  9.     Private Sub Form1_Paint(sender As Object, e As System.Windows.Forms.PaintEventArgs) Handles Me.Paint
  10.         For Each RandomText In RandomTexts
  11.             e.Graphics.DrawString(RandomText.Text, F, Brushes.Black, New Point(RandomText.LocationX, RandomText.LocationY))
  12.         Next
  13.     End Sub
  14.  
  15.     Private Sub Timer2_Tick(sender As System.Object, e As System.EventArgs) Handles Timer2.Tick
  16.         RandomTexts.Add(New RandomText("", New Point(0, 0)))
  17.         'MsgBox(RandomTexts.Count)
  18.     End Sub
  19.  
  20.     Private Sub Timer1_Tick(sender As System.Object, e As System.EventArgs) Handles Timer1.Tick
  21.         NewText()
  22.         Me.Invalidate()
  23.     End Sub
  24.  
  25.     Private Sub NewText()
  26.         Dim R As New Random
  27.         Dim Alphabet As String = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890"
  28.         Dim N As Int32 = CInt(R.Next(3, 15))
  29.         Dim A As Int32 = CInt(R.Next(Alphabet.Length))
  30.         For Each RandomText In RandomTexts
  31.             RandomText.Text = ""
  32.             RandomText.LocationX = R.Next(-10, 390)
  33.             RandomText.LocationY = R.Next(-10, 390)
  34.             Do Until N <= 0
  35.                 N -= 1
  36.                 RandomText.Text += Alphabet(A)
  37.                 A = CInt(R.Next(Alphabet.Length))
  38.             Loop
  39.         Next
  40.  
  41.     End Sub
  42.  
  43. End Class