Sep 27, 2006 #1 RTR1900 Programmer Joined Mar 12, 2006 Messages 8 Location 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 Joined Feb 25, 2002 Messages 64 Location 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.
Sep 27, 2006 Thread starter #3 RTR1900 Programmer Joined Mar 12, 2006 Messages 8 Location ES Thx! David Upvote 0 Downvote