Hmm, Oki, New Problem with the statement I used:

Heres my Code:

vb Code:
  1. SQL = "INSERT INTO [Course_" & CourseName & "] (Gender, HomeRoom, StudentNumber) VALUES ('" & TempGender & "','" & DR("Home Room/Form") & "','" & DR("Special Use") & "')"
  2.                         Command = New OleDbCommand(SQL, Connection)
  3.                         Command.Parameters.AddWithValue("LastName", DR("Last Name"))
  4.                         Command.Parameters.AddWithValue("FirstName", DR("First Name"))
  5.                         Command.Connection.Open()
  6.                         Command.ExecuteNonQuery()
  7.                         Command.Connection.Close()

When I exit out of the Program & then Open it back Up, It then Loads up the Data in the DB File, But for some reason, their all

,

And For that Reason, its because its not Adding to Database, It adds everything else except the first and last name