Can we use the if and else if both together in VB.net ? what is the syntax ?
Please reply me soon. please.
regards.
|
Go4Expert Member
|
|
| 2Jul2010,13:20 | #1 |
|
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 |
|
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 |