从 datagridview 中清空特定的数字列
问题:
如何从datagridview中清空特定列的数字? (我的意思是删除没有标题的值,而不是删除该列)。
我如何创建datagridview:
我创建了一个数据库表,其中有5个ID数据类型为“int”,我通过数据源、绑定源连接了datagridview。当我将值放入表中并按下按钮时:(下面的按钮代码)
table1BindingSource2.EndEdit();
table1TableAdapter2.Update(database1DataSet8.Table1;
它将把值保存到数据表中。
例如,表中的第一个 ID 是:Konduktivita1[μS_cm-1]
我认为需要的是实际删除 DataTable 中的值,但我不知道该怎么做。
Question:
How to empty specific column of numbers from datagridview? (i mean erase the values without header, not delete the column).
for example FROM THIS TO THAT, so i dont need to do it manually
How i created the datagridview:
i created a database table, with 5 ID's all of datatype "int", i connected the datagridview through DataSource, bindingsource. And when i put values in the table and press button:(button code below)
table1BindingSource2.EndEdit();
table1TableAdapter2.Update(database1DataSet8.Table1;
It will save the values into DataTable.
For example the first ID in the table is : Konduktivita1[µS_cm-1]
What i think is neccesery is to actually delete the values from DataTable but i dont how to do it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您提供某种代码会更容易,但让我们尝试这样的事情。
It would be easier if you provided some kind of code, but let's try something like this.