I have written a basic Application for windows mobile 5.
It is using visual studio 2008 and c# .net
I am currently trying to find a way of storing my customer names but im not sure what format is best for storing data directly on the device ( i dont need it to integrate with any servers or anything)
I'm hoping someone here knows which direction i should be looking. I'm looking into the dataset object at the moment but doesnt seem to be saving anything?
Here is a snippet of code i've been playing with.
private void menuItem1_Click(object sender, EventArgs e)
{
DataSet mySet = new DataSet1();
DataRow oOrderRow = mySet.Tables["tblPeople"].NewRow();
oOrderRow["name"] =nameTextBox.Text;
mySet.Tables["tblPeople"].Rows.Add(oOrderRow);
}