I am using a couple of arrays defined by e.g.
public arr1() as variant and they strictly need the ()-part after the variable name to work in the preexisting code.
however if I try to rearrange them by 1) joining text by a delimiter ":-:" (filltering out unwanted data in a for-loop), the split function don't work:
arr1=Split(tmpString, ":-:")
And again I am strictly restrained to using the variants as defined above.
I am very greatfull for any help!
Splitreturns an array ofStrings, so you need to convert the result to an array ofVariants, as demonstrated in the linked thread.