Hey there,
C and many other languages have this construct:
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.Code:variable = (condition) ? value1 : value2
Gr,
Mightor




Reply With Quote