Thanks Kovan,

your code really helped me out, but the thing I am trying to accomplish is to create a type so I can add all the information in that type.
So in the case of your example:
I want to create a type Wood.
The properties are name and length.

type wood
name as string
length as long
end type


If I want to add information my call is something like:

Wood.name = "oak"
Wood.length = 2761