STat = Array[0..W-1] Of Single ; { Static array }
DST = Array Of STat ; { One dimension dynamic, the other static }
D2T = Array Of Array Of Single ; { Two dynamic dimensions }
STat always means the address starting with STat[0] (context
independend).
Also DST always means the address where DS
On 12/7/2010 12:37 PM, andrew.benn...@ns.sympatico.ca wrote:
In various places, "dynamic array" becomes "dynamical array"
which messes up searching. Somebody should decide which it is!
Dynamical is inappropriate usage in this context. Dynamic is correct.
--
Rich S.
Marc Weustink wrote
>On 3-12-2010 17:26, Jürgen Hestermann wrote:
>> ...
>> STat = Array[0..W-1] Of Single ; { Static array }
>> DST = Array Of STat ; { One dimension dynamic, the other static }
>> D2T = Array Of Array Of Single ; { Two dynamic dimensions }
>>
>> STat always means the addres
On 3-12-2010 17:26, Jürgen Hestermann wrote:
andrew.benn...@ns.sympatico.ca schrieb:
After using BlockRead to fill a 2D dynamic array, I get an access
violation on the very first reference. A 2D array with only one
dimension dynamic works OK.
What am I missing?
Maybe you blundered into the same
On 05/12/2010 23:35, andrew.benn...@ns.sympatico.ca wrote:
J?rgen Hestermann wrote
andrew.benn...@ns.sympatico.ca schrieb:
After using BlockRead to fill a 2D dynamic array, I get an access
violation on the very first reference. A 2D array with only one
dimension dynamic works OK. What am I m
J?rgen Hestermann wrote
>andrew.benn...@ns.sympatico.ca schrieb:
>> After using BlockRead to fill a 2D dynamic array, I get an access
>>violation on the very first reference. A 2D array with only one
>>dimension dynamic works OK. What am I missing?
>
>Maybe you blundered into the same tra
andrew.benn...@ns.sympatico.ca schrieb:
After using BlockRead to fill a 2D dynamic array, I get an access violation on the
very first reference. A 2D array with only one dimension dynamic works OK.
What am I missing?
Maybe you blundered into the same trap as so many others who do not know
th
After using BlockRead to fill a 2D dynamic array, I get an access violation on
the
very first reference. A 2D array with only one dimension dynamic works OK.
What am I missing?
Windows, FPC 2.2.2, 2.2.4 or 2.4.2.
Program WriteA ; { Write a binary file using using static array and BlockWrite }
C