Android Question compounded If Then

Steve-h

Member
Is it permissible to compound the result of an If Then statement ? For example

If mode=2 Then ((a=1) & (b=2) & ( c=3))

It seems happy with a=1 but not b and c.
 

DonManfred

Expert
Licensed User
Longtime User
B4X:
If mode=2 Then
  a = 1
  b = 2
  c = 3
End if
 
Upvote 1
Top