I have a form where I want users to be able to edit or add items for an order. “OrderNumber” is a key field.
Because the Order Number is critical, I'd like to have that field locked so the user cannot update it.
This means they also can’t update it on the blank row where the new item would normally be added (it’s current default is null).
So, can I have that text box for Order Number on the blank row default to the Order Number at hand? Or do I need to allow that box to be updated all around? (Can I have my cake and eat it too???)
More info: The Form is “EditOrders”. It is based on a Query called “SelectOrders” which is basically “Select * from table Orders where OrderNumber = [Enter Order Number]”. It’s a Continuous Form that allows additions. Order Number is a required field.
Because the Order Number is critical, I'd like to have that field locked so the user cannot update it.
This means they also can’t update it on the blank row where the new item would normally be added (it’s current default is null).
So, can I have that text box for Order Number on the blank row default to the Order Number at hand? Or do I need to allow that box to be updated all around? (Can I have my cake and eat it too???)
More info: The Form is “EditOrders”. It is based on a Query called “SelectOrders” which is basically “Select * from table Orders where OrderNumber = [Enter Order Number]”. It’s a Continuous Form that allows additions. Order Number is a required field.