Hi:
A couple questions:
(I understand that 1-dimension is not truely an array, but let's go with it)
This is a code snippet
1). I get an error "missing declaration" Member at Comple time ...WHY?
All Arrays xTSHLArray,TSLArray ...have been previously Dim as Global Single or Long
These arrays big.
2). Could I MAT xTSLArray() = TSHLArray(Member,0)?
I other words can I copy out Member to a 1-dim Array?
Sure would me helpful and easier. Don't want to use a For Loop.
3). What about the TAGARRAY xTSLIArray()..
Do I need a xTSLIArray(Member,0) here?
Thanks for your help.
Bruce
------------------
A couple questions:
(I understand that 1-dimension is not truely an array, but let's go with it)
Code:
SUB ArraySort ALIAS "ArraySort"(BYVAL Member AS LONG,_ BYVAL SortLength AS LONG,_ BYVAL StartPos AS LONG) REDIM xTSLArray(Member,DimArray) AS GLOBAL SINGLE,xTSLIArray(Member,DimArray) AS GLOBAL LONG MAT xTSLArray(Member,0) = TSLArray(Member,0) MAT xTSLIArray(Member,0) = TSLIArray(Member,0) ARRAY SORT xTSLArray(Member,StartPos) FOR SortLength,TAGARRAY xTSLIArray() ,ASCEND END SUB
1). I get an error "missing declaration" Member at Comple time ...WHY?
All Arrays xTSHLArray,TSLArray ...have been previously Dim as Global Single or Long
These arrays big.
2). Could I MAT xTSLArray() = TSHLArray(Member,0)?
I other words can I copy out Member to a 1-dim Array?
Sure would me helpful and easier. Don't want to use a For Loop.
3). What about the TAGARRAY xTSLIArray()..
Do I need a xTSLIArray(Member,0) here?
Thanks for your help.
Bruce
------------------
Comment