PDA

View Full Version : the coding for AND


kalosneri
06-01-2005, 05:43 AM
anybody, can u tell me what's the coding if we want the condition to be like this

if (A AND B) equal to C
then
C=C+1
end if

can u tell me the coding in vbscript?

glenngv
06-01-2005, 10:34 AM
if A=C and B=C then
C=C+1
end if
I thought it's for SQL statements (http://www.codingforums.com/showthread.php?p=315572)?