PRB: APPEND FROM ARRAY Creates Only One RecordLast reviewed: June 27, 1995Article ID: Q119635 |
The information in this article applies to:
SYMPTOMSThe APPEND FROM ARRAY command should create one record in the currently selected database for each row in an array. Occasionally, only a single record will be created with the data from the first element of the array.
CAUSEThe array has been created as a one-dimensional array, as shown in the following example:
DIMENSION myarray(40) RESOLUTIONThe array must be created as a two-dimensional array, as shown in the following example:
DIMENSION myarray(40,1)The ",1" causes the array to be created as 40 rows by 1 column. The APPEND FROM ARRAY command will now function as expected.
|
Additional reference words: FoxUnix FoxMac FoxDos FoxWin 2.00 2.50 2.50a
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |