Hello everybody,
I have a data table with three rows in it.
I bring it to the right in the picture.
I need to display this value one by one in the window of another program.
That is, first enter “3811” into the window and perform an action with this value, then display “3812” and so on.
please tell me how to do it?
use for each row in datatable
replace “HeaderName” with the name of your column header
CurrentRow(“HeaderName”).toString will equal
1st iteration: 3188
2nd iteration:3182
3rd iteration: 3803
Hi
In log message itself mention like this if you are adding Datarow one by one
dt.Rows(dt.Rows.Count-1)(“yourcolumnname”).ToString
This will display the recently added Datarow and that specific column value in log message
Cheers @yulya
it is works, thank you!
1 Like
thank you!
1 Like
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.