Hi,
I want to compare 2 variables with each other, if they are not even a message have to show.
Example
In the next cases I want to have a message:
I want to compare 2 variables with each other, if they are not even a message have to show.
Example
Code:
DEF VAR a AS CHAR CASE-SENSITIVE
DEF VAR b AS CHAR CASE-SENSITIVE
....
IF a NE b THEN
MESSAGE "try again!" VIEW-AS ALERT-BOX INFO BUTTONS OK
In the next cases I want to have a message:
- a = "A" and b = "a" (this works)
- a = "1" and b = "u" (this works)
- a = "ë" and b = "e" (this doesn't work)