首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > VB >

关于DataGrid某特定列的修改,多谢

2012-03-20 
关于DataGrid某特定列的修改,急,谢谢!我的目的是查出DataGrid某一列的特定内容,然后将其修改为我指定的内

关于DataGrid某特定列的修改,急,谢谢!
我的目的是查出DataGrid某一列的特定内容,然后将其修改为我指定的内容!与其绑定的数据库的内容也进行修改!DataGrid与Adodc绑定

我写的代码为:
If DataGrid2.Columns(3).Text = 100 Then
  DataGrid2.Columns(3).Text = "SGMJV-01AAA61"
  Adodc2.Refresh
  DataGrid2.Refresh
  End If
可是并没起作用,麻烦各位达人指点下!谢谢!


[解决办法]
你好像只是指定了列号,没有指定列号,定位不了记录的。
[解决办法]
是不是没有Adodc1.Update
[解决办法]
If DataGrid2.Columns(3).Text = "100" Then
DataGrid2.Columns(3).Text = "SGMJV-01AAA61"
'Adodc2.Refresh'又从数据库加载数据
'DataGrid2.Refresh
Adodc2.updatebatch
End If

热点排行