Access custom data type through their "definition"

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top