|
-
Mar 8th, 2007, 10:20 AM
#1
Thread Starter
Member
List of conditions
Does anyone know where I can get a list of conditions (=, <>, Like is all I know)?
Thanks
-
Mar 8th, 2007, 10:32 AM
#2
Addicted Member
- If you found my post to be helpful, please rate me.

-
Mar 8th, 2007, 10:38 AM
#3
Re: List of conditions
Operators and their precedence
Arithmetic
^ exponentiation
- negation
*, / multiplication and division
\ integer division
Mod modulus arithmetic
+, - addition and subtraction
&, + String concatenation
Comparison
= equals
<> not equals
< less than
> greater than
<= less than or equal to
>= greater than or equal to
Like a pattern matching operator
Is an object type comparer
Logical
Not not
And and
Or or
Xor exclusive or
Eqv equivalence
Imp implication
-
Mar 23rd, 2007, 11:32 AM
#4
Addicted Member
Re: List of conditions
i have a text box field name txt_login.
within an if statement i want to put something like only if txt_login is not equal to nothing.
i tried
txt_login.text <> ""
but it doesn't seem to like it. Any suggestions why.
-
Mar 23rd, 2007, 12:06 PM
#5
Re: List of conditions
That should work as long as txt_login is not part of a control array, and, of course, you have the If and a Then.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|