How to judge VB logic expression? In VB, the value of the following logical expression is true A.#1/11/2009# > #11/15/2009# B.#1/11/2009# < #11/15/2009#

How to judge VB logic expression? In VB, the value of the following logical expression is true A.#1/11/2009# > #11/15/2009# B.#1/11/2009# < #11/15/2009#


B
#1 / 11 / 2009 this is the date month / day / year
Is that all right



The logical expression of VB x-yx + Y > 10 is


x-yx+y and x+y>10



Write the following conditions, using VB logic expression
1: X + y is less than 10 and X-Y is greater than 0
2: X and y are both positive integers or negative integers
3: One of A. B is zero, but not both
4: C1 + C2 + C3 is greater than or equal to 255 or C1 and C2 are greater than 90 and C3 is greater than 80


1、(X+Y)0
2、(X>0 and Y>0 and int(X)=X and int(Y)=Y) OR (X90 and C2>90 and C3>80)