计算数据集中有多少行,然后在文本框中显示为文本?
如何计算数据集返回的行数,然后将总行数显示为 textbox.text 和只读,以便用户只能看到它们而不能更改它们?
到目前为止,我有这个,但它没有返回一个数字,并说它找不到表 0:
tbRecordsFound.Text = ds.Tables(0).Rows.Count
How can I count how many rows are returned by a dataset and then show the total number of rows as textbox.text and read-only so that the user can only see them but not change them?
so far I have this but it dosent return a number and says it cant find table 0:
tbRecordsFound.Text = ds.Tables(0).Rows.Count
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试这样的事情:
你也可以这样做:
Try something like this:
You can also do it like this:
上面的代码可以工作,但是您需要为表提供一个标识符,例如:
这可以通过创建 DataAdapter 并使用“Fill”函数为表提供名称来完成。下面是一个示例,其中“da”代表 DataAdapter:
The above code will work, however you need to give the table an identifier, such as:
This can be done via creating a DataAdapter and using the "Fill" function to give the table a name. Here is an example where "da" represents the DataAdapter: