Brain camp - records per block setting in VSTs

RealHeavyDude

Well-Known Member
OpenEdge 10.1c on Sun Solaris 64Bits.

I seem to have a brain camp as I can't find the records per block setting in the VSTs. Does anybody know where I can find it?

Thanks in Advance, RealHeavyDude.
 
Just done a search of the VSTs and there's no reference to "Rec", "Blk" or "Block" so I'm not sure where it might be :(
 
Thanks for your support Cringer - I've come to the conclusion that the records per block setting is not available in the VSTs ( namely _Area, _AreaStatus and _AreaExtent ).

Thanks, RealHeavyDude.
 
Its the _Area-Recbits field in the _Area VST. However you won't see 1, 8, 64 .... You have to run it through the exp function to get the value.

for each _area no-lock:
display _Area-name _Area-number exp(2,_Area-Recbits).
end.
 
Back
Top