hi
im using vb.net 2005
I have a simple insert using a typed dataset
exactly the same process in another project works fine

Dim newRow As myDataSet.tblFieldRow = myDataSet.tblField.NewRow
newRow.firstname = "jon"
newRow.surname = "smith"
myDataSet.tblField.AddtblFieldRow(newRow)

No data is being inserted into tblfield , but there is no error message
again this works fine , inserting the data in another project
It gives no error message when running the code , so I just dont know where to start debugging this
any ideas ?
thanks