테이블이 삽입 상태이면 데이터셋의 값이 dsinsert 라는데... 지금 dsinsert 인지 확인하고 싶거든요... 어떻게 해야 하는지 생각이 떠오르질 않습니다. if Table.dsinsert = true then 했더니 Undeclared identifier : 'dsinsert' 라고 ...
세균맨
•
2002.08.28 01:58
이런 식으로 하세요
if table1.state in [dsinsert] then
begin
////하고 싶은 일.....
...
if table1.state in [dsinsert] then
begin
////하고 싶은 일.....
end;