D Davide Vernole [MVP] Sep 9, 2004 #2 Mark Goldin said: What is a way of creating an xml document on a fly? Thanks Click to expand... You could start from this tutorial: http://www.dotnetjunkies.com/QuickS...=/quickstart/howto/doc/Xml/OverviewofXML.aspx In particular see this: http://www.dotnetjunkies.com/QuickS...l=/quickstart/howto/doc/Xml/WriteXMLFile.aspx
Mark Goldin said: What is a way of creating an xml document on a fly? Thanks Click to expand... You could start from this tutorial: http://www.dotnetjunkies.com/QuickS...=/quickstart/howto/doc/Xml/OverviewofXML.aspx In particular see this: http://www.dotnetjunkies.com/QuickS...l=/quickstart/howto/doc/Xml/WriteXMLFile.aspx
D Darren Clark Sep 10, 2004 #3 I fyou use a dataset to store you data you can simply use the the writeXML and readXML. methods.
H http://www.visual-basic-data-mining.net/forum Sep 10, 2004 #4 Using the classes in System.Xml namespace, e.g. System.XML.XmlDocument xl =new System.XML.XmlDocument(); There are different ways of doing so. Your approach will be dictated by what you are trying to do.
Using the classes in System.Xml namespace, e.g. System.XML.XmlDocument xl =new System.XML.XmlDocument(); There are different ways of doing so. Your approach will be dictated by what you are trying to do.