VB Code:
  1. If (cn.State = adStateOpen) Then
  2.                     Dim Str As String
  3.                     Str = "INSERT INTO " & SQLTable & "(Username, Password) VALUES(" & Text1.Text & "," & Text2.Text & ")"
  4.                     adoRS.Open str, cn
  5.                 End If

how can i tell if the insert was successful?
and does the inset syntax look correct to you guys? i havent tested it yet

edit**********
tested it and it throws an 'sql sntax' error