If you assign value from recordset array to some variable, for example:
boolvalue=strstemp(3)
in unworkarounded (bool is last column in table) scenario the boolvalue has value and it works as a standart variable, but the strstemp is empty from now so if you have array like this:
strstemp(0)
strstemp(1)
strstemp(2)
strstemp(3)
strstemp(4)
and you have to read for example three:
boolvalue=strstemp(3)
you have value from strstemp(3) in boolvalue but values from:
strstemp(0)
strstemp(1)
strstemp(2)
strstemp(3)
strstemp(4)
will all disapear together.
JVV
|