Else- If Ladder:
यह if-then-else का ही extended form है जिसमे multiple
conditions और multiple results के लिए use किया जाता है।
इसमे एक condition के false होने पर second, second के false होने पर third statement execute
होती है और किसी
के true न होने पर Else block execute होता है।
Syntax-
If condition1 Then
‘Statements1
ElseIf condition2 then
‘Statement2
ElseIf condition3 then
‘Statement3
…
…
ElseIf Condition N Then
‘Statement
N
Else
‘Statement
Else
End If
Ex- Dim per As Decimal
per = Val(TextBox1.Text)
If per > 60 Then
MsgBox("Firse")
ElseIf per > 50 Then
MsgBox("Second")
ElseIf per > 40 Then
MsgBox("Third")
Else
MsgBox("Fail")
End If
No comments:
Post a Comment