G
Gary.
I am setting up a purchase order form using the code
PO_Number = Nz(DMax("Po_Number", "tblPONum")) +1
I am using the code in the BeforeInsert of the Form
I have heard that this is a problem in a multiuser database
What would be a better option in a multiuser situation
PO_Number = Nz(DMax("Po_Number", "tblPONum")) +1
I am using the code in the BeforeInsert of the Form
I have heard that this is a problem in a multiuser database
What would be a better option in a multiuser situation