Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Artful Two for Clipper 5.0 - Norton Guide http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]

Syntax

ADISPLAY( aArray[, nRow [, nCol ]] )

Purpose

Show the elements of an array in a window.

Arguments

     aArray-- array to display

     nRow -- top row of window; defaults to 3

     nCol -- left-most column of window; defaults
to 40

Setup

aArray can be multi-dimensional.

Example

     LOCAL my_array := { { "First", "One" }, ;
                         { "Second", "Two" }, ;
                         { "Third", "Three" }, ;
                         { "Fourth", "Four" } }
     ADISPLAY( my_array )

Returns

NIL

Side Effects

The contents of aArray are displayed in a window.

Artful Calls

BLANK

Source File

AA_ADISP.PRG

Notes

If an array is multi-dimensional, only the first element of the sub-array
is displayed, then pressing ENTER on this element pops up another window
listing the elements of that sub-array.

This function will probably be most valuable to you as a debugging tool.

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson