I am using PB/DLL 6.0
Tonight I tried using the STRREVERSE$ function for the first time and the following things occurred:
1) When I typed "STRREVERSE" in the editing window the text turned blue, but when I added the $ character the text reverted to black.
2) When I used "STRREVERSE$" and ran the compiler, the compiler treated STRREVERSE$ as a variable, not a function.
3) When I used "STRREVERSE" the compiler notified me of a missing variable declaration. (I used #DIM ALL at the beginning of the file).
Here is the code I used:
dim msg as string
dim tty as string
msg=STRREVERSE$(PARSE$(tty,1))
It's as if the compiler doesn't recognize this keyword at all. Any idea what's going on?
------------------
[This message has been edited by Arne Shulstad (edited August 19, 2000).]
Tonight I tried using the STRREVERSE$ function for the first time and the following things occurred:
1) When I typed "STRREVERSE" in the editing window the text turned blue, but when I added the $ character the text reverted to black.
2) When I used "STRREVERSE$" and ran the compiler, the compiler treated STRREVERSE$ as a variable, not a function.
3) When I used "STRREVERSE" the compiler notified me of a missing variable declaration. (I used #DIM ALL at the beginning of the file).
Here is the code I used:
dim msg as string
dim tty as string
msg=STRREVERSE$(PARSE$(tty,1))
It's as if the compiler doesn't recognize this keyword at all. Any idea what's going on?
------------------
[This message has been edited by Arne Shulstad (edited August 19, 2000).]
Comment