I have data type like this:
then I dimension an array
I have several arrays like this in my program.
I was using UBOUND(csaTable)
and it was working, then suddenly on one array it didn't work.
I looked at PB help and I see
It *kind* of works... but if not, how can I get the ubound of a typed array?
Code:
Type csaType cLine As String * 75 cSampleID As String * 75 cAggl As String * 10 cMot As String * 10 cVol As String * 10 cConc As String * 10 cTSD As String * 10 cTar As String * 10 cTech As String * 75 End Type
Code:
dim csaTable() as csaType
I was using UBOUND(csaTable)
and it was working, then suddenly on one array it didn't work.
I looked at PB help and I see
UBOUND cannot be used on arrays within User-Defined Types.
It *kind* of works... but if not, how can I get the ubound of a typed array?
Comment