09-28-2013, 11:12 AM
Error here:
You create 1 str variable (varSplitPO), but specify that you need max 2 tokens with tok. Then tok overwrites some other memory.
Correct code:
or
You create 1 str variable (varSplitPO), but specify that you need max 2 tokens with tok. Then tok overwrites some other memory.
Correct code:
str varSplitPO variableForOtherToken
;split
tok(varPOBox &varSplitPO 2 "x" 2)
out varSplitPO
out variableForOtherToken