A 
		
								
				
				
			
		Able
Dear friends
Dim myDataView as DataView = New DataView(dsData.Tables("tblCustomers"))
myDataView.RowFilter = "City = 'London'"
My question is how to loop through all rows in myDataView and edit the field
fldZipCode so fldZipCode = "9800"
Regards Able
				
			Dim myDataView as DataView = New DataView(dsData.Tables("tblCustomers"))
myDataView.RowFilter = "City = 'London'"
My question is how to loop through all rows in myDataView and edit the field
fldZipCode so fldZipCode = "9800"
Regards Able
	