You can export the DataSet to XML file and open it in Word. The method to call is WriteXML or something. I don't remember the exact syntax off hand. The result of course is in XML format. If you are looking for something more like an Excel format, you may want to write it out as CSV file. There is no WriteCSV method btw. Also you may want to override ToString method if you need any format that's not XML. This would be the way I would do it.
|