hey
i have a code that update a certain field if it contains this mark [']
when i run it in the access table it works fine
when i run it in the vb 6 code i get a error why?
this is the code
in access
Code:
UPDATE Customers SET FullName = Replace(FullName,"'","")
in vb 6
Code:
CN.Execute "UPDATE Customers SET FullName = Replace(FullName," ' ","")"
tnx for any help
salsa