Acquiring data of a column in a row DataSet

LabelText = DataSet11.Tables("COMM.USERS").Rows[0]["User_Name"].tostring()

LabelText = DataSet11.Tables("COMM.USERS").Rows(0).Item("user_name")

Label.Text=ds.Tables(0).Rows(i).Item( "列名 ")

Label.Text=ds.tables[0].rows[0][ "filed "]

= Ds.Tables Label.text [0] .Rows [X] [Y]
---------------------
OF: yudehui
Source: CSDN
description: https: / /blog.csdn.net/yudehui/article/details/18843795
Disclaimer: This article is a blogger original article, reproduced, please attach Bowen link!

Guess you like

Origin www.cnblogs.com/jijm123/p/11301034.html