Sep 27, 2006 #1 RTR1900 Programmer Mar 12, 2006 8 ES Hi, in the code form the previous programmer I found this: If rec#'E' net=net + 1 endif What does the " rec#'E' " means? Does it mean that "if rec <> 'E'" ? or something else. I can not find anywhere the Syntax about the # sign Thx David
Hi, in the code form the previous programmer I found this: If rec#'E' net=net + 1 endif What does the " rec#'E' " means? Does it mean that "if rec <> 'E'" ? or something else. I can not find anywhere the Syntax about the # sign Thx David
Sep 27, 2006 #2 JanBucek IS-IT--Management Feb 25, 2002 64 CZ You are right, the operators for "not equal": <> # != are equivalent, it is possible to use any of them. Upvote 0 Downvote
You are right, the operators for "not equal": <> # != are equivalent, it is possible to use any of them.