I've been wondering why the following :
temp$=country$+" "
produced :
Quoteerror : wrong argument type :
It turns out I have the following variables defined :
LOCAL country AS tCountry
LOCAL path$,temp$,found%,countryCode%,country$,defLanguage$
I believe its using country (as tCountry) instead of country$
I guess $ is not part of the variable name, so you defined "country" twice.
Yes, that was the conclusion I can to too. However, in that case, the compiler should generate an error message...
oh, that's bad.
However, doing :
path$=country$
INC path$," "
Works :/
This is a small example :
TYPE tTest
moo%
ENDTYPE
LOCAL test AS tTest
LOCAL test$,temp$
temp$=test$+" "