Else if in VB.NET

Go4Expert Member
2Jul2010,13:20   #1
Fatima Khan's Avatar
Can we use the if and else if both together in VB.net ? what is the syntax ?
Please reply me soon. please.
regards.
Go4Expert Founder
2Jul2010,13:39   #2
shabbir's Avatar
As far as I remember it should be

Code:
If <condition> Then
	<statements>
ElseIf <condition> Then
	<statements>
Else
	<statements done if all conditions false>
End If