November 18, 2003

Skip Navigation LinksIrocon > Blog > 2003 > November, 2003 > November 18, 2003

Read and write XML to-and-from a dataset

This article, obtained from CodeNotes, illustrates the use of the DataSet's WriteXML() and ReadXML() methods to read and write XML to a DataSet.=== READ XML DATA TO DATASET =======using System;using System.Data;using System.Data.SQL;using System.IO;public class ReadXML{ public static void Main() { // Instantiate a new DataSet object DataSet ds = new DataSet(); ...Last Updated:Thursday, September 02, 2010By:alfero#

50 essential Excel tips

I found this article to be an invaluable resource, especially "How to repair file associations". Working at the helpdesk, I have had to this more often than anything.Tom at All American Auctions also setup a great troubleshooting page, with information collected from CNet, ZDNET and Tech Republic Last Updated:Thursday, September 02, 2010By:alferoSource#