RE: Strange problem (or still asleep)

2001-05-15 Thread Bryan Love
true. Bryan Love ACP Internet Application Developer [EMAIL PROTECTED] -Original Message- From: David Baskin [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 15, 2001 11:20 AM To: CF-Talk Subject: Strange problem (or still asleep)

RE: Strange problem (or still asleep)

2001-05-15 Thread Christopher Olive, CIO
bject: Strange problem (or still asleep) Hello, i'm running the code below and i'm not getting the expected results. i'm passing in a variable with the length of 5 so i would expect that the errorString would not be appended, but in fact it is. The same thing happens when i pass in a vari

RE: Strange problem (or still asleep)

2001-05-15 Thread Jann VanOver
iable would have to be 5 AND 9!! In short, change your OR to an AND to fix the problem. -Original Message- From: David Baskin [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 15, 2001 11:20 AM To: CF-Talk Subject: Strange problem (or still asleep) Hello, i'm running the code below a

Re: Strange problem (or still asleep)

2001-05-15 Thread Doug McCaughan
- Original Message - From: "David Baskin" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, May 15, 2001 2:20 PM Subject: Strange problem (or still asleep) > Hello, i'm running the code below and i'm not getting the expected

RE: Strange problem (or still asleep)

2001-05-15 Thread Bruce Heerssen
age- > From: David Baskin [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, May 15, 2001 1:20 PM > To: CF-Talk > Subject: Strange problem (or still asleep) > > > Hello, i'm running the code below and i'm not getting the expected results. > i'm passing in a varia

Re: Strange problem (or still asleep)

2001-05-15 Thread Kevin Miller
Your logic is incorrect. A number will ALWAYS be either NEQ 9 or NEQ 5. Use an AND operator rather than an OR operator. Kevin >>> [EMAIL PROTECTED] 05/15/01 11:20AM >>> Hello, i'm running the code below and i'm not getting the expected results. i'm passing in a variable with the length of 5

Re: Strange problem (or still asleep)

2001-05-15 Thread G
thing :) Try an "AND" in there instead. HTH Brian - Original Message - From: "David Baskin" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, May 15, 2001 1:20 PM Subject: Strange problem (or still asleep) > Hello, i'm run

RE: Strange problem (or still asleep)

2001-05-15 Thread John
Not sure but trim the variable to make sure it's not carrying the spaces. John -Original Message- From: David Baskin [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 15, 2001 1:20 PM To: CF-Talk Subject: Strange problem (or still asleep) Hello, i'm running the code below a

Re: Strange problem (or still asleep)

2001-05-15 Thread Todd Ashworth
ROTECTED]> Sent: Tuesday, May 15, 2001 2:20 PM Subject: Strange problem (or still asleep) | Hello, i'm running the code below and i'm not getting the expected results. | i'm passing in a variable with the length of 5 so i would expect that the | errorString would not be appended, b

Strange problem (or still asleep)

2001-05-15 Thread David Baskin
Hello, i'm running the code below and i'm not getting the expected results. i'm passing in a variable with the length of 5 so i would expect that the errorString would not be appended, but in fact it is. The same thing happens when i pass in a variable with the length of 9. I can't seem to figure