hi
i'm tryin to get data from my windows form that is 1st stored in a dataset then stored later in a local database(.sdf). this is the code i'm trying to use on the save button clock event.
Dim houseType As String = me.housingType.selectedValue
Dim desc As String = Me.housingDescription.Text
Dim newRow As DataRow = TMSDataSet
......... my 1st problem is here because i get errors when i try to call the new row method.
my 2nd problem is more of a question. Do i have to always insert my form data in a dataset before storing it in the database?