Hi,
I have problems with adding data to pass access

VB Code:
  1. Private Sub Command1_Click()
  2.     Dim username As String
  3.     Dim password As String
  4.     Dim title As String
  5.    
  6.     Set AConn = New ADODB.Connection
  7.     Set ARecd = New ADODB.Recordset
  8.     Set aComm = New ADODB.Command
  9.    
  10.     title = title_t.Text
  11.     password = pass_t.Text
  12.     username = username_t.Text
  13.     CString = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=pass.mdb; DefaultDir=" & App.Path & ";"
  14.     AConn.ConnectionString = CString
  15.     AConn.Open
  16.    
  17.     RString = "insert into pass (`סיסמא`,`שם משתמש`,`נושא`,) values(" & password & "," & username & "," & title & ")"
  18.     ARecd.Open RString
  19. End Sub

i dont know what is the broblem
i cannot give the error becuase its hebrew..

What can be the problem ?

-k3pos