private void ReadXmlButton_Click(object sender, EventArgs e) { string FilePath = @"F:\test\authors.xml"; AuthorsDataSet.ReadXml(FilePath); dataGridView1.DataSource = AuthorsDataSet; dataGridView1.DataMember = "Rate"; }
private void ReadXmlButton_Click(object sender, EventArgs e) { string rutaArchivo = "E:/ejemplos/ReadingXML/ReadingXML/authors.xml"; AuthorsDataSet.ReadXml(rutaArchivo); dataGridView1.DataSource = AuthorsDataSet; dataGridView1.DataMember = "Authors"; }
//</Snippet1> //<Snippet2> private void ReadXmlButton_Click(object sender, EventArgs e) { string filePath = "Complete path where you saved the XML file"; AuthorsDataSet.ReadXml(filePath); dataGridView1.DataSource = AuthorsDataSet; dataGridView1.DataMember = "authors"; }
private void ReadXmlButton_Click_1(object sender, EventArgs e) { string filePath = "C:\\Users\\RafalC\\Desktop\\Exercise\\ReadingXML\\ReadingXML\authors.xml"; AuthorsDataSet.ReadXml(filePath); dataGridView1.DataSource = AuthorsDataSet; dataGridView1.DataMember = "\authors"; }
private void button2_Click(object sender, EventArgs e) { string filePath = @" C:\Users\laura\OneDrive\Escritorio\FORMATEO\Cosas importantes\CURSO-DAM\2DAM\3_Des_Interfaces\Ejercicios_C#\Ficheros\XML_Ejercicios-Ejemplos\ArchivosXML\ArchivosXML\authors.xml"; AuthorsDataSet.ReadXml(filePath); System.IO.StringWriter swXML = new System.IO.StringWriter(); AuthorsDataSet.WriteXmlSchema(swXML); textBox1.Text = swXML.ToString(); }
private void button1_Click(object sender, EventArgs e) { string filePath = @" C:\Users\laura\OneDrive\Escritorio\FORMATEO\Cosas importantes\CURSO-DAM\2DAM\3_Des_Interfaces\Ejercicios_C#\Ficheros\XML_Ejercicios-Ejemplos\ArchivosXML\ArchivosXML\authors.xml"; // string path = @"C:\" //Look ma, no escape // string path = @"C:\programs\file.txt"; // C:\Users\laura\OneDrive\Escritorio\FORMATEO\Cosas importantes\CURSO-DAM\2DAM\3_Des_Interfaces\Ejercicios_C#\Ficheros\XML_Ejercicios-Ejemplos\ArchivosXML\ArchivosXML AuthorsDataSet.ReadXml(filePath); dataGridView1.DataSource = AuthorsDataSet; dataGridView1.DataMember = "authors"; }
private void Form1_Load(object sender, EventArgs e) { // load database string filepath = "notebook.xml"; AuthorsDataSet.ReadXml(filepath); dgv1.DataSource = AuthorsDataSet; dgv1.DataMember = "notebook"; dgv1.AutoResizeColumns(); //add record }