A form contains fields (UIObjects) which have fieldnames.
I want to color one field corresponding to the value of another field named "Von".
Code:
#formdata1.enumFieldNames(Feldnames) ; works fine
for i from 1 to maxFields
if Feldnames[i] = Von then ; works fine
Feldnames[i].color = green ;; Error while compiling.
endif
endfor
I get back the value (content) of Feldnames[i], but I want to modify a property!
Thanks in advance for a hint!
Uli