Marty another question, say i have 5 fields on my form, Student Id, First Name, Last Name, Password, Email. In my table they are not in that order. Does that make a difference for taking them in?? I can get it to work for just the StudID and Email but when i try adding the next few i get an error that theres wrong SQL syntax.
Bit messy:
Insert Into Students(StudentID, FirstName, LastName, BirthDate, Password, EmailName)
VALUES ('"& StudID.Text &"', '"& F_Name.Text &"', '"& L_Name.Text &"', '"& D_O_B.Text &"', '"& Password1.Text &"', '"& Email.Text &"')"