I have done it before and don't remember running into this issue. Here is the error and code and thanks for checking it out, maybe a second set of eyes...
=========
run-time error '2147217887(80040e21)
Multiple-step operation generated errors. Check each ole db status value, if available. No work was done.
Private Sub CmdSave_Click()
Dim ssql As String
Dim valdetail As String
Dim rs As Recordset
Dim conn As ADODB.Connection
Set conn = New ADODB.Connection
With conn
.ConnectionString = "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=Administration;Data Source=SOLOFIND"
.Open
Set rs = New ADODB.Recordset
rs.CursorType = adOpenKeyset
rs.LockType = adLockOptimistic
'rs.Open "Resolution", conn, , , adCmdTable
ssql = "Select * from resolution Where res_id = '" & Cmbres.Text & "'"
rs.Open ssql, conn, adOpenKeyset, adLockOptimistic, adCmdText
rs!fname = "" & Txtfname
rs!lname = "" & Txtlname
rs!retailer = "" & txtret
'On Error Resume Next
rs!detail = "" & txtresolution
rs.Update
MsgBox "Datebase Updated"
valdetail = "" & rs!detail
End With
End Sub
aspvbwannab