
There must be a work-around but i don't know it.
Any help is much appreciated.
Robert
.
Code: Select all
x$="abc"
y$="ac"
x=2
y=3
IF x$<>y$ AND x<>y THEN
PRINT "both pairs not equal"
ELSE
PRINT "one pair is equal"
ENDIF
END
It should also say:Valid expressions contain one of the five relational operators =, <, >, <= and >= and variables or constants.
You can see why i questioned it...Use "<" and ">" together to test for inequality, example: IF abc$ <> xyz$ THEN...