能不能对列的属性进行设置,使得这一列的数据一经输入后,就不能修改,但是又不影响新的数据的输入?
表的PrepareEdit 事件
锁定“第一列”列的非空内容
If e.Col.Name = "第一列" AndAlso e.Row.IsNull("第一列") = False Then
e.Cancel = True
End If
[此贴子已经被作者于2009-6-26 19:37:04编辑过]
If e.Col.Name = "外径"
AndAlso e.Row.IsNull("外径") = False
orelse e.Col.Name = "壳高"
AndAlso e.Row.IsNull("壳高") = False
orelse e.Col.Name = "总高"
AndAlso e.Row.IsNull("总高") = False Then
e.Cancel = True
End If