9 lines
86 B
Text
9 lines
86 B
Text
|
|
Dim a As Integer = 1
|
||
|
|
If a = 1 Then
|
||
|
|
sub1
|
||
|
|
ElseIf a = 2 Then
|
||
|
|
sub2
|
||
|
|
Else
|
||
|
|
sub3
|
||
|
|
End If
|