Array Changing From BOUNDED To UNBOUNDED In PowerBuilder
1 2 3 4 5 6 | // assume lsUnbounded has been populated elsewhere. //Now unbounded array will contain the values of the bounded array, dimensioned at 5. String lsNull [ ], lsBounded [ 5 ], lsUnbounded [ ] lsUnbounded = ls_Null lsUnbounded = ls_Bounded |
Good Luck!