Re: Delphi 7 breakpoint bug



Somebody wrote:
Hi, I have noticed that if I have two variable arrays of byte at around the 50,000 byte mark and which are set to predetermined values, then the 'blue button' breakpoint option disappears. Here's an example...

FileArray1[0..49999] of byte = (0,1,2,3,4,5.... 49999);
FileArray2[0..49999] of byte = (0,1,2,3,4,5.... 49999);

Anybody noticed this before and/or can suggest a reason/workaround?

Workarounds: Fill the arrays in a loop in code. Or load them from a resource or file at run time. Or put them somewhere other than byte 50000 in your code. Or don't even use the arrays since they already have easily predictable values at every position.

--
Rob
.


Quantcast