Hi,
My first post! I've found the forums very useful, and with a bit of research I've been able to sort out all my questions until now...
In VB/ASP/VBS etc I could do something like this..
I have tried changing the case statement thus:
case 65..90, 97..122
but still fails. I cannot find anything in the documentation, or on these forums.
Is this possible?
My first post! I've found the forums very useful, and with a bit of research I've been able to sort out all my questions until now...
In VB/ASP/VBS etc I could do something like this..
function isChar%( char$ ) select asc( char ) case 65 to 90, 97 to 122 '# Alpha chars return true end select end function
I have tried changing the case statement thus:
case 65..90, 97..122
but still fails. I cannot find anything in the documentation, or on these forums.
Is this possible?