Hi
I have a databound ListBox and I edit a row as follows :
After the EndEdit the edited item disappears from the list..Code:DataRowView Row=((DataRowView)lst.SelectedItem); Row.BeginEdit(); Row["name"]=frmEdit.txtName.Text; Row.EndEdit();
So I'm trying to set the RowStateFilter of the dataview (that the listbox is boud to) and tried several combinations of the DataViewRowState enum but I can't make all rows appear (unchanged/added/changed)
Any help ???


Reply With Quote