B4J Question How does B4J evaluate compound If statements [solved]

Didier9

Well-Known Member
Licensed User
Longtime User
In the old VB 6.0, a compound If statement (like If x="A" and y="B" Then) was always fully evaluated, i.e. the second test y="B" was evaluated even if the first test failed.
But in C, the equivalent statement would exit after the first test if it evaluates to false.
How does B4J handle it?
 

OliverA

Expert
Licensed User
Longtime User
Same as C.
 
Upvote 0
Top