Web Site Devloped By Abhishek Mishra
Tech. Help By Anand Mishra
Contact no. 9425355631

Powerd by Shree Guru Kripa Computer


vb.net_lader_if


This is vb.net_lader_if.It is Lader if example.Ans Show in Message box. This is "UPPERCASE" Character program also.

Public Class Form1
Dim N As String
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
N = TextBox1.Text.ToUpper
If N = "BHOPAL" Then
MsgBox("M.P")
ElseIf N = "LUCKNOW" Then
MsgBox("U.P")
ElseIf N = "JAIPUR" Then
MsgBox("R.J.")
Else
MsgBox("DATA N.A.")
End If
End Sub
End Class