store the data that is entered in the form

  • Thread starter Thread starter friend
  • Start date Start date
F

friend

hello all,

is it possible to store the data that is entered in the form
for example
1. we have a datagridview in the form and we entered some values
during run time
2. form is closed
3. when next time the form is loaded is it possible to have the values
that are entered during last time.

thank you for any help
 
It is possible.

However it depends what is the datasource.

If that is a dataset you can use the DataSet.WriteXML with its overloaded
function

ds.WriteXml("path", XmlWriteMode.DiffGram)

I hope this is what you mean

cor
 
It is possible.

However it depends what is the datasource.

If that is a dataset you can use the DataSet.WriteXML with its overloaded
function

ds.WriteXml("path", XmlWriteMode.DiffGram)

I hope this is what you mean

cor
 
Back
Top