We can now see that we have done something foolish while designing the
CarTable. The fields Brand and Model were set to use the extended data type called
Name. Although the correct label has been set in the table itself, they will not show
when you fetch the fields using display and edit methods. To fix this, you could
create new extended data types for Brand and Model, set the correct label on the
extended data types, and change the Extended Data Type properties on these two
fields in the CarTable. You would then also have to change the variable type in
the display methods (and any other methods) where the fields are used. This
would be the correct way of dealing with the problem, but it is also the most time
consuming. For a quick-fix you could change the Label property on the fields in the
form, but that would not help if you had to use the display methods in other forms
or reports.