Hi!

Can someone please tell me if the following code is equivelent?

If B0 <> 10 Then
B0 = B0 + 1
B1 = B1 - 1
Endif


Is the above the same as this below?


If B0 <> 10 Then B0 = B0 + 1 :B1 = B1 - 1

I am trying to determine whether (in the second example) "B1 = B1 + 1" would be executed only if B0 <> 10.

Thanks.