Many posts already talk about that, but not the way I’m trying to do it.
I’m using a buildDT activity to make a new DT (DT01) with 4 columns and nothing else.
I initialized my DataRow (DT01R like that : DT01.NewRow()
Now I’m trying to edit the content of DT01R with an multiple assign activity :
DT01R(0) = “Hello”
DT01R(1) = “word”
DT01R(2) = “I am”
DT01R(3) = “John Doe”
But it’s not working.
An error is triggered :
- Can’t assign “word” to DT01R.item(1)
Any help will be very appreciate.