Array Browser utility
Array Browser utility is a development tool to view an array content in a Browse window. Useful in analyzing content of the arrays during development process.
It creates a cursor named BrowseArrayCursor with column names in following format: T_C[_L]
where,
T - Column type, 'V' if there are different types of values in the column
C - Column Number
L - Maximum length required to represent value in this column for the variable length field types
1 2 3 4 5 6 7 8 9 DO browarr WITH Myarray * or browarr(@Myarray) * To see a list of arrays in a memory and invoke Array Browser from it DO FORM BrowArray
Comments