Dec 29, 2001 #1 specv Programmer Aug 8, 2001 42 CA Hi I use function Find on an ADODB.recordset : Me.Recordset.Find "noPiece = '" & Trim(sReponse) & "'", 1 My problem is on the field noPiece. I think in te bd there are whitespace before and after. How can I trim noPiece? thanks Phil
Hi I use function Find on an ADODB.recordset : Me.Recordset.Find "noPiece = '" & Trim(sReponse) & "'", 1 My problem is on the field noPiece. I think in te bd there are whitespace before and after. How can I trim noPiece? thanks Phil
Dec 31, 2001 #2 braindead2 Technical User Nov 11, 2010 647 GB you can't use find in ADO like in DAO Trim(noPiece) when you open the recordset or use DAO sorry good luck Upvote 0 Downvote
you can't use find in ADO like in DAO Trim(noPiece) when you open the recordset or use DAO sorry good luck