private void Form2_Load(object sender, System.EventArgs e)
{
//
string myXMLfile = "\\Compact Flash\\Chw\\ProdutoParms.xml";
DataSet ds =
new DataSet();
//
try
{
ds.ReadXml(myXMLfile);
dataGrid1.DataSource = ds.Tables [0];
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
}
I Need edit the datagrid....
Somebody Can Help me ?