Rexxx
MIS
- Oct 16, 2001
- 47
I have a dataset named company and I am trying to replace every character (^) in the rows of a certain column (coname) with another character ('). Code I have is follows:
For i = 0 to ds.Tables.Count -1
Replace(ds.Tables("company"
.Rows(i).Item("coname"
, "^", "'"
Next
Problem is, this apparently isn't storing the changed items. What do I need to add to get the rows that get changed to stay changed within this dataset company?
For i = 0 to ds.Tables.Count -1
Replace(ds.Tables("company"
Next
Problem is, this apparently isn't storing the changed items. What do I need to add to get the rows that get changed to stay changed within this dataset company?