* fix from 7513

git-svn-id: trunk@4912 -
This commit is contained in:
marco 2006-10-14 18:24:24 +00:00
parent d509adb9fa
commit 70af850b43

View File

@ -841,7 +841,7 @@ end;
procedure TMemDataset.SetRecNo(Value: Integer);
begin
CheckBrowseMode;
if (Value>1) and (Value<=FRecCount) then
if (Value>=1) and (Value<=FRecCount) then
begin
FCurrRecNo:=Value-1;
Resync([]);