Jun 13, 2002 #1 CookieNZ MIS Apr 22, 2002 48 NZ This sql string fails:- UPDATE Supportcall SET (Description,Status) VALUES ('" & txtcalldescription.Text & "','" & cmbstatus.Text & "')" Any thoughts?
This sql string fails:- UPDATE Supportcall SET (Description,Status) VALUES ('" & txtcalldescription.Text & "','" & cmbstatus.Text & "')" Any thoughts?
Jun 14, 2002 #2 almi Programmer Jun 19, 2001 16 YU UPDATE Supportcall SET (Description,Status) VALUES ('" & txtcalldescription.Text & "','" & cmbstatus.Text & "')" Should look like this "UPDATE Supportcall Set Description = '" & txtcalldescription.Text & "', set Status='" & cmbstatus.Text & "'" Best Regards ALMI Upvote 0 Downvote
UPDATE Supportcall SET (Description,Status) VALUES ('" & txtcalldescription.Text & "','" & cmbstatus.Text & "')" Should look like this "UPDATE Supportcall Set Description = '" & txtcalldescription.Text & "', set Status='" & cmbstatus.Text & "'" Best Regards ALMI