D
DianePDavies
I have a data interface based on a number of record formats. Every record is
defined as a type i.e. with named elements - e.g.:
Type Record1
val1 as integer
val2 as integer
val3 as integer
val4(10) as SubRec1
end Type
where SubRec1 also is a type with integer elements.
Now I want to display the contents of the intreface data - i.e. show val1,
val2 etc.
Is there a way of showing the contents of such a format based on the type
definition?
As opposed to having to program the display of each individual value?
So I am looking for a generic way of showing the data, instead of having to
make code for every specific value..
defined as a type i.e. with named elements - e.g.:
Type Record1
val1 as integer
val2 as integer
val3 as integer
val4(10) as SubRec1
end Type
where SubRec1 also is a type with integer elements.
Now I want to display the contents of the intreface data - i.e. show val1,
val2 etc.
Is there a way of showing the contents of such a format based on the type
definition?
As opposed to having to program the display of each individual value?
So I am looking for a generic way of showing the data, instead of having to
make code for every specific value..