Results 1 to 5 of 5

Thread: List of conditions

  1. #1

    Thread Starter
    Member
    Join Date
    Sep 2006
    Posts
    52

    List of conditions

    Does anyone know where I can get a list of conditions (=, <>, Like is all I know)?

    Thanks

  2. #2
    Addicted Member
    Join Date
    Jun 2006
    Posts
    172

    Re: List of conditions

    • If you found my post to be helpful, please rate me.

  3. #3
    PowerPoster gavio's Avatar
    Join Date
    Feb 2006
    Location
    GMT+1
    Posts
    4,462

    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

  4. #4
    Addicted Member
    Join Date
    Mar 2007
    Posts
    166

    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.

  5. #5

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width