The forum should be here!
My solution for you would be to work with XML in a Dataset.
Step 1: Convert your dataset to XML at the sending end thus.
dsMyDataset.WriteXML("C:\myFile.xml")
A new file will be created with name myFile.xml on drive C. You then can transmit this file over your socket.
Step 2: Convert XML to Dataset at the receiving end thus.
dsMyDataSet.Clear
dsMyDataset.ReadXML ("C:\myFile.xml")
The WriteXML method have options for writing and raeding the XML schema = > XMLWriteMode.WriteSchema.
For more details I will refer you to this document.
vbADOXML.exe
You can download it from:
http://msdn.microsoft.com/library/en-us/dnadvnet/html/vbnet0625002.asp frame
Should this link not work, simply go to the
http://msdn.microsoft.com/library/en-us
and serch for the vbADOXML.exe file.
Hope this will help...
Vie
|