I want to know the number of rows int th data table dt_Titlelsit.
How could i do?
데이터 테이블 dt_TitleList에 있는 행의 개수를 구하는 방법을 알고 싶습니다.
I want to know the number of rows int th data table dt_Titlelsit.
How could i do?
데이터 테이블 dt_TitleList에 있는 행의 개수를 구하는 방법을 알고 싶습니다.
use a Write Line activity and write as dt_Titlelsit.Rows.Count, this will display the count in Output panel
OR
You can declare a Int32 variable and the same as above to store the count in an variable
Hope this may help you
Thanks,
Srini
You can use an assign with value = dt_Titlelait.RowCount
Remember that the type must be integer