SharpDevelop Tutorial-Change String into Lower Case and Upper Case
Hi, see you again in this SharpDevelop tutorial. Now we want to learn how to change the string into Lower case and Upper case. its a very simple program that will enable you to change a text into upper and lower case using button.
You can do this by following this simple tutorial
First, create form and add control into it : Label, and 2 buttons.
Sub MainFormLoad(sender As Object, e As EventArgs)
Label1.Text = "Lets Learn SharpDevelop"
End Sub
To change text or string into lower case, we use :
Sub Button1Click(sender As Object, e As EventArgs)
'Make all text lower case
Dim teks As String
teks = label1.Text
label1.Text = teks.ToLower()
End Sub
Next to change the text into upper case, we use:









