| View previous topic :: View next topic |
| Author |
Message |
rousni
Joined: 23 Mar 2006 Posts: 41
|
Posted: Mon Oct 08, 2007 11:47 am Post subject: If SubStr(VALUE, 0) = x |
|
|
Why this doesn't work:
| Code: | VALUE = blablax
If SubStr(VALUE, 0) = x
SoundBeep |
Thanks |
|
| Back to top |
|
 |
Superfraggle
Joined: 02 Nov 2004 Posts: 846 Location: London, UK
|
Posted: Mon Oct 08, 2007 12:14 pm Post subject: |
|
|
because it should be
| Code: | VALUE = blablax
If SubStr(VALUE, 0) = "x"
SoundBeep |
The function call forces expression type evaluations. _________________ Steve F AKA Superfraggle
http://r.yuwie.com/superfraggle |
|
| Back to top |
|
 |
|