when i use this line of code
how do i know that the 0 in Tables(0) is the table i want?Code:Label5.Text = dataset.Tables(0).Rows.Count.ToString
and if there is other tables how do i know what number it is?
Printable View
when i use this line of code
how do i know that the 0 in Tables(0) is the table i want?Code:Label5.Text = dataset.Tables(0).Rows.Count.ToString
and if there is other tables how do i know what number it is?
You can also use the name of the table in place of the 0 in your code.
thanks