When building an SQL string, form controls must be concatenated as strings but functions do not. Why?
In the examples below, textbox contains text and MyFunction returns a string.
Example with form control:
db.Execute "UPDATE table SET field = 'some text" & Forms!MyForm!textbox & "';"...