云
云淡风轻
Unregistered / Unconfirmed
GUEST, unregistred user!
procedure TForm1.notifyScroll;
var
aUS:TUpdateStatus;
begin
aUS:=ADODataSet1.UpdateStatus;
if (aUS=usUnModified) then //此句Incompatible type
SetUpdateStatusInfo(True,False,False,False)
else if (aUS=usModified) then //此句Incompatible type
SetUpdateStatusInfo(False,True,False,False)
else if (aUS=usInserted) then //此句Incompatible type
SetUpdateStatusInfo(False,False,True,False)
else if (aUS=usDeleted) then //此句Incompatible type
SetUpdateStatusInfo(False,False,False,True)
end;
var
aUS:TUpdateStatus;
begin
aUS:=ADODataSet1.UpdateStatus;
if (aUS=usUnModified) then //此句Incompatible type
SetUpdateStatusInfo(True,False,False,False)
else if (aUS=usModified) then //此句Incompatible type
SetUpdateStatusInfo(False,True,False,False)
else if (aUS=usInserted) then //此句Incompatible type
SetUpdateStatusInfo(False,False,True,False)
else if (aUS=usDeleted) then //此句Incompatible type
SetUpdateStatusInfo(False,False,False,True)
end;