Code: (Select All)
Print Iff$(_Width > _Height, "Landscape View", "Portrait View")
x = 150: e = 200
Print Iff$(x > e, "100", "200")
Function Iff$ (Bool&, true$, false$)
If Bool& <> 0 Then Iff$ = true$ Else Iff$ = false$
End Function
b = b + ...