I have a form were I populate fields by using a key value and search a remote table.
I don't want the user to be able to modify any of data shown, only input data in other fields. I have marked the populated fields, disable after save, but obviously since form has not been saved, user can mess up data.
How can I have these fields locked?
Thanks
This will populate description fields to let the operator know he is working on the right truck. At this point I need to have the populated fields locked. However more required info needs to be typed before they can open a pivot table were one or more records must be created before saving.
Do you have any idea on his to protect this initial data from being modified by the user?
Thanks
1. Find any way to wedge a custom menu into your work flow to save/protect data. This was my first attempt.
2. Break records down as far as keys and single data fields. Again you need to save data to protect it. Change your simple data model into a series of 1-to-1 relationships.
3. Probably a combo of these 2 based on your needs/factors not yet discussed.
I have not built anything this extreme but this model adds a lot of saves as the data is entered.
To me, the save and write once tools are your friends.
Firstly, you can define the field as an entry field and connect it to the remote field (Get Value from). This reads the value from the remote field but then allows change (at least until the value is saved). Based on your original problem description this seems to be what you are doing.
Alternatively you can define the field as a remote field. This displays the value but does not allow change (not via this form, that is).
Mike