Hi guys, I can't figure out how to add values to a new dataview row.
The dataview already has data in it, in the form that the first column is integers and the second strings. When I add the new row, I can successfully add the integer value, but the string value remains null:
[/SIZE]
How can I figure out which row in the view it is, and how can I add a new value to item(1)? Creating the row does not return an int value which I can refer to for an item.
Thanks,
James
The dataview already has data in it, in the form that the first column is integers and the second strings. When I add the new row, I can successfully add the integer value, but the string value remains null:
VB.NET:
[SIZE=2]dvTopicList.AddNew.Row.Item(0) = -1
How can I figure out which row in the view it is, and how can I add a new value to item(1)? Creating the row does not return an int value which I can refer to for an item.
Thanks,
James