Patch level : 10.0 270

Files correlati     :  ca2.exe ca2500a.msk
Ricompilazione Demo : [ ]
Commento            :

Aggiunto programma di invio a Board.
Ripristinate funzioni di visualizzazione e salvataggio ripartizione temporale delle righe nella modifica movimenti analitici

git-svn-id: svn://10.65.10.50/branches/R_10_00@23204 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
bonazzi 2016-06-24 21:18:53 +00:00
parent 3b3d84de71
commit a60ddc249b

View File

@ -297,8 +297,8 @@ bool TODBC_recordset::move_to(TRecnotype n)
{
if (n < 0)
_current_row = 0L;
if (n >= tot)
_current_row = tot - 1L;
if (n > tot)
_current_row = tot;
return true;
}
@ -493,8 +493,6 @@ int TODBC_recordset::compare_rec(const TISAM_recordset& dbfset)
cmp = dbffld.as_int() - sqlfld.as_int();
break;
}
if (cmp != 0)
int i = 1;
}
return cmp;
}