KKlosson,
If you will...
I'm trying to prevent the spelling of the word Pending (in the choices) from being edited.
All the other choices can be edited.
The reason for this is because if user changes spelling of 'Pending', then they can delete it.
So how would I prevent this?
I tried:
IF JobStatus.JobStatus = 'Pending' THEN
REPORT ERROR 'JobStatus Pending cannot be edited.'
But the problem with this is that, sure it prevents ADDING letters but doesn't prevent, say, taking of the 'g' off of 'Pending' and saving.
I wonder why this happens?