Laßt euch nicht verwirren
NOR heißt C = not (A or B ) ---> C = (not A) and (not B)
all das geht:KLASSISCH NOR
if A = 1 OR b = 1 then
' FALSE
else
' TRUE
end if
Schaut nur blöd aus, weil a = 0 die "true" bedingung ist,Geht aber genauso
if A = 0 AND b = 0 then
' TRUE
else
' FALSE
end if
Lesezeichen