Tagged Questions

14
votes
9answers
4k views

IIf() vs. If

In Visual Basic, is there a performance difference when using the IIf function instead of the If statement?
6
votes
1answer
1k views

If, IIf() and If()

I recently asked a question about IIf vs. If and found out that there is another function in VB called If which basically does the same thing as IIf but is a short-circuit. Does this If function ...
2
votes
4answers
3k views

Java Equivalent to iif function

the question is simple, there is a functional equivalent of the famous iif in java? For example: IIf (vData = "S", True, False) Thanks in advance.
0
votes
4answers
240 views

Why won't this work as an IIF function, but will as an IF Statement?

The following works: If 1=1 rdoYes.checked = True Else rdoNo.checked = True End If However, the following doesn't work: IIF(1=1, rdoYes.checked = True, rdoNo.checked = True) Why is this? ...