Veritabanindaki tablonun statusunu nasil ogrenebilirim. dsInsert veya dsEdit ile ogrenmeye calistigimda
Kod: Tümünü seç
if (dm.ds_kasa.state = dsInsert) then
Kod: Tümünü seç
[DCC Error] hspkodunit.pas(88): E2003 Undeclared identifier: 'dsInsert'
Kod: Tümünü seç
if (dm.ds_kasa.state = dsInsert) then
Kod: Tümünü seç
[DCC Error] hspkodunit.pas(88): E2003 Undeclared identifier: 'dsInsert'
Kod: Tümünü seç
if dm.ds_kasa.state in [dsInsert] then
// veya hem insert hem de edit i kontrol etmek istersen
if dm.ds_kasa.state in [dsInsert,dsEdit] then