Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 2 of 2 total
Thread Range check error in DBIsamCR
Tue, Apr 11 2006 2:27 PMPermanent Link

Vern Wilson
Hi all ~

had turned on Range Checking for some leak seeking and now quite often I get a Range Check
Error
in DBISAMCR (see below)

Anybody else sees that as well?

TIA,
Vern

procedure MD5Encode(Output: PByteArray; Input: PLongWordArray; Len: longword);
var
 i, j: longword;
begin
 j := 0;
 i := 0;
 while j < Len do
 begin
   output[j]     := byte(input[i] and $ff);
   output[j + 1] := byte((input[i] shr 8) and $ff);                       //  
<------------------------------------- dies here with Range Check Error
Wed, Apr 12 2006 3:06 AMPermanent Link

Roy Lambert

NLH Associates

Team Elevate Team Elevate

Vern


Its normal - don't try and compile DBISAM with $R+

There's been a number of posts about this - just check out the ng's

Roy Lambert
Image