如何判断一个表是可编辑或插入状态的。(20分)

  • 主题发起人 主题发起人 狼牙
  • 开始时间 开始时间

狼牙

Unregistered / Unconfirmed
GUEST, unregistred user!
if table1.可编辑 then
a...
else b...
 
判断table1.readonly不行吗?
 
if table1.state=dsinsert or table1.state=dsedit then
不过要在头文件上uses db 单元
 
if table1.state in [dsInsert,dsEdit] then
a...
else
b ...
可以吗?
 
同意破剑式。
 
同意上面的
 
破剑式的,没错
 
最简单的是用:
if DataSet.CanModify then
....
else
....
 
后退
顶部