SerDeserDemo
============

Demonstrate myXMLProperties XML serializer for VB6 objects.

http://www.vb-helper.com/howto_vb6_serialize.html


Building the Code
=================

First open SerDeserLib.vbp and compile it to create SerDeserLib.dll
which contains a simple class: SimpleData.

Next open SerDeserDemo.vbp, and go to References.  Replace the
MISSING: SerDeserLib reference with a fresh reference to your newly
compiled and registered SerDeserLib.  Compile and save or run in
the IDE.


Running SerDeserDemo
====================

Run the program.

Modify the two values A and B in the Input Frame as desired.

Check the options for "Omit B" and/or "Vals as Attribs" as desired.

Click on the Serialize button.  This will create an instance of
SimpleData, then set its A and B properties, then serialize the
object to XML, and place the resuting XML into the large Textbox
for viewing.  Finally it will enable the Deserialize button.

Click on the Deserialize button.  This creates a new instance of
SimpleData, deserializes the XML from the display Textbox into
it, and displays the values of A and B in the Output Frame.


Cleanup
=======

You will probably want to unregister SerDeserLib when done playing
with this.
