Hi Steeve, Thanks for your answer. In the meantime I have found the way to handle the message through XML. And the speed is OK, but if it's possible todo faster I would be very glad. So I read you were able to extract fields to a struct, from a DLL?? Would you share some idea's or code with me?
Satch --- In [email protected], "Steeve Gilbert" <[EMAIL PROTECTED]> wrote: > > Hi, > > I think the XML version will indeed be a bit slower, but unless your > code is heavily used, I don't think you'll see a difference between XML > and DLL call. I've been able to use struct with DLL but not array. > > If you want to extract data from your XML string, use XML helper class > (XMLDocument, XMLNode, XMLElement, etc...) and that should be easy > enough. Start with : > > XMLDocument xmlDoc = new XMLDocuement(); > xmlDoc.loadXML(yourXMLString); > ... > check methods available in XMLDocument. > > regards, > > Steeve... >

