Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
'pk_inv_case_no' is the Primary key and is auto-incremented. Is it safe/advisable to use it as you described above? I am afraid of causing issues as before. I think displaying it in the browse form is ok, but I hesitate using it in the edit form.
The real issue is likely that the PK field is (or was) tied to a field with the same name as the column (pk_inv_case_no), which seems to be the root cause of the problems you experienced. If you assign the select object a different ID (e.g., pk_inv_case_no_2) and use SQL to display the record number, the issues should disappear.