Urgent Help needed,
I am updating an access database using C#. Everything works fine except when there are multlines in text box controls, update command doesnot update these textboxes to text field or memo field. On screen I have a grid from the same datasource as that of the textbox where the change is reflected an appears in multi lines. On updation the text boxes with multiline is not updating the fields. If its a single line on these fields it gets updated.
I use oledb dataadapter, datasource and dataview and updation is done by calling the
DataTable ds3 = myDataSet.Tables["Listing"].GetChanges(DataRowState.Modified);
myDataAdapter2.UpdateCommand = myCommandBuilder2.GetUpdateCommand();
if (ds3 !=null)
{
myDataAdapter2.Update(ds3);
ds3.Dispose();
}
DataAdapter2.Update
Thanx
Aroop