D
DianePDavies
Is it possible to access a custom data type in the same way I e.g. can access
the elements of a table definition?
I want to scan through a custom data type and list the name of the data
along with the data content.
With reference to the type below - is there a way to access the data
definition from VBA in a way where I then can retrieve the label/name "val1"
and then list it along with the value stored in it? Like I could scan through
all the field names of a table and list the value in this particular field.
Type Record1
val1 as integer
val2 as integer
val3 as integer
val4(10) as SubRec1
end Type
the elements of a table definition?
I want to scan through a custom data type and list the name of the data
along with the data content.
With reference to the type below - is there a way to access the data
definition from VBA in a way where I then can retrieve the label/name "val1"
and then list it along with the value stored in it? Like I could scan through
all the field names of a table and list the value in this particular field.
Type Record1
val1 as integer
val2 as integer
val3 as integer
val4(10) as SubRec1
end Type