Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations MikeeOK on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by embryo6

  1. embryo6

    Save XML file from Datagrid

    Hi, Clive ds is a Dataset, xmlWri is a XmlTextWriter (System.Xml) I fill the DataGrid with this code: ds := DataSet.Create; ds.ReadXml('myFile.xml'); DataGridXML.DataSource := ds.Tables[0]; DataGridXML.DataBindings; Then, with another button, I'm trying to save the modified file. This is the...
  2. embryo6

    Save XML file from Datagrid

    Hi people, I'm using a XML file in a datagrid... when I save it, I also would like to add a reference to a STYLE SHEET: xmlWri := XmlTextWriter.Create('myFile.xml',Encoding.UTF8); xmlWri.WriteString('<?xml-stylesheet type="text/xsl" href="myFile.xsl"?>'); xmlWri.Close...

Part and Inventory Search

Back
Top