please help me with this..please tell what is wrong here..here is my code;But as i click my save button, this is the error message:vb Code:
Private Sub cmdSave_Click() Dim db_file As String Dim statement As String Dim conn1 As ADODB.Connection Dim ctl As Control Dim sDateString As Date ' Date Format 'sDateString = Format(DTCalendar.value, "mm/dd/yyyy") ' Get the data. db_file = App.Path If Right$(db_file, 1) <> "\" Then db_file = db_file & "\" db_file = db_file & "DB.mdb" ' Open a connection. Set conn1 = New ADODB.Connection conn1.ConnectionString = _ "Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data Source=" & db_file & ";" & _ "Persist Security Info=False" conn1.Open ' Compose the INSERT statement. statement = "INSERT INTO tblDPSR " & _ "(LineNo, Shift, Date, PreparedBy, ItemCodes, Weight, StartingNo, LastNo, Quantity, TotalHPE1) " & _ " VALUES (" & _ "'" & cmbLine.Text & "', " & _ "'" & cmbShift.Text & "', " & _ "'" & DTCalendar.value & "', " & _ "'" & cmbPrepared.Text & "', " & _ "'" & cmbIC1.Text & "', " & _ "'" & txtWeight1.Text & "', " & _ "'" & txtStarting1.Text & "', " & _ "'" & txtLast1.Text & "', " & _ "'" & txtQ1.Text & "', " & _ "'" & txtTotalHPE1.Text & "'," & _ ")" ' Execute the statement. conn1.Execute statement, , adCmdText 'conn1.Execute ("INSERT INTO tblDPSR(Date) VALUES (" & "'" & DTCalendar.value & "#,)") ' Close the connection. conn1.Close ' Clear the TextBoxes. For Each ctl In Controls If TypeOf ctl Is TextBox Then ctl.Text = "" End If Next ctl End Sub
Syntax error in INTO statement
With that error, highlights the line: conn1.Execute statement, , adCmdText
What could be my error? Please help me


Reply With Quote
