Hallo,
I want to add a row to an existing DataTable. The value I want to add is in this variable: “dtList.Rows(i)(10).ToString”. i being the rowindex. The Datatable dtList I want has 3 colums. I want to add a new row in colum 0 (“Name”).
thanks
Hallo,
I want to add a row to an existing DataTable. The value I want to add is in this variable: “dtList.Rows(i)(10).ToString”. i being the rowindex. The Datatable dtList I want has 3 colums. I want to add a new row in colum 0 (“Name”).
thanks
Hi.
You can use “Add Data Row” activity itself. In the properties of the activity you can see ArrayRow. In that, specify the values in the below format:
{dtList.Rows(i)(10).ToString,“”,“”}
Specify the Datatatable name also.
Hi, can I also use DataRow instead of ArrayRow ?
thank you for your help
see my reply
thank you very much!
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.