john9210 Posted September 2, 2008 Posted September 2, 2008 What does the expression Not(Get(foundcount)) mean?
Ocean West Posted September 2, 2008 Posted September 2, 2008 (edited) Get(FoundCount) will return a number of the current found count NOT in front of it returns a boolean result if the the value returned from the found count evaluates to 0 Could also be written Get(FoundCount) = 0 Edited September 2, 2008 by Guest
Quartekoen Posted September 2, 2008 Posted September 2, 2008 This is a guess, but it might have to do with the nature of boolean expressions. For many systems, True and False are not just represented by 1 and 0, but rather, 0 is false, and any other value is true. This may be checking for that sort of thing. If the found count is 0, then false, so if Not false, then etc... Basically, if the FoundCount is 0, then TRUE. Though, my theory could be expressed by Get(foundcount) = 0 instead...
john9210 Posted September 2, 2008 Author Posted September 2, 2008 Tanks for the explanation. It helps a lot.
Ocean West Posted September 2, 2008 Posted September 2, 2008 also could be just Not Get(FoundCount) you don't have to wrap the NOT in parentheses
Recommended Posts
This topic is 5986 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now