D
David A. Osborn
Is there a way to take an xml file that I have created that lays out the
formating for custom objects with their properties and then pull them into
vb.net to use? For example the xml would look like:
<myobjects>
<object>
<name>object1</name>
<property>color</property>
<property>height</property>
<property>width</property>
</object>
<object>
<name>object2</name>
<property>weight</property>
<property>color</property>
</object>
</myobjects>
Then I would like to be able to work with object1 and object2 just like they
a standard vb.net object where I could do object1.color = 'blue' . Is this
possible?
Thanks!
formating for custom objects with their properties and then pull them into
vb.net to use? For example the xml would look like:
<myobjects>
<object>
<name>object1</name>
<property>color</property>
<property>height</property>
<property>width</property>
</object>
<object>
<name>object2</name>
<property>weight</property>
<property>color</property>
</object>
</myobjects>
Then I would like to be able to work with object1 and object2 just like they
a standard vb.net object where I could do object1.color = 'blue' . Is this
possible?
Thanks!