B
bstieve
Hi all,
i'm looking at the next problem.
i'm trying to get the names of attributes of object or of types.
example
class test
private name as string
sub new (byval test as string)
me.name = test
end sub
end class
class main
dim x as new test("hello")
end class
i now would like tto know how i can get from either the type of test
or the object the value name. i do not want the data in the attributes
but the defined name of the attributes
many thanks in advance,
Stieve
i'm looking at the next problem.
i'm trying to get the names of attributes of object or of types.
example
class test
private name as string
sub new (byval test as string)
me.name = test
end sub
end class
class main
dim x as new test("hello")
end class
i now would like tto know how i can get from either the type of test
or the object the value name. i do not want the data in the attributes
but the defined name of the attributes
many thanks in advance,
Stieve