hey, how do i solve this error:
"multi-step generation operation has created errors. check each status value." (or something like that)
i get especially during
rsRecordset("Field").Value = txtTextField.Text
lines
any ideas?
Printable View
hey, how do i solve this error:
"multi-step generation operation has created errors. check each status value." (or something like that)
i get especially during
rsRecordset("Field").Value = txtTextField.Text
lines
any ideas?
When ever I get them, it means that I am trying to pass in a value that the field can't hold, like trying to pass a Long into an Integer field, or String into a number field.
Check and see that everything is correct in that respect.
:)