08-25-2022, 12:34 AM
I'm thinking it's a type mismatch issue. Try this:
DIM a(10) AS STRING * 8
foo a()
SUB foo (a() AS STRING)
END SUB
One is variable length, the other is fixed length, and I'm not 100% certain they'll pass back and forth with that difference between them.
DIM a(10) AS STRING * 8
foo a()
SUB foo (a() AS STRING)
END SUB
One is variable length, the other is fixed length, and I'm not 100% certain they'll pass back and forth with that difference between them.