SENDTS case sensitive issue
Posted: Sun Jan 03, 2016 11:38 am
Think I've just found a strangeness with the SENDTS command; It's only accepting lower case as the variable; any mixed or upper case case sends the variable name.
This works as expected
This sends 'Ldr' as field 1
This works as expected
Code: Select all
TOP
ai ldr
SENDTS({my key},1,ldr)
delay 16000
goto TOP
This sends 'Ldr' as field 1
Code: Select all
TOP
ai Ldr
SENDTS({my key},1,Ldr)
delay 16000
goto TOP