Hey there,

C and many other languages have this construct:
Code:
variable = (condition) ? value1 : value2
Where variable is assigned value1 if (condition) returns true, otherwise value2 is assigned. What is the VB equivalent? I'd really rather not use an If...Else...End If statement.

Gr,
Mightor