i am in search of this as I see that Microsoft Word having this feature. Sentence Case and Toggle Case.
I wan to add this two items in the Menu item so that the selected text will convert to the Sentence Case if i click ' Convert to sentence Case' or toggle case if i click 'conv. to toggle case'...
I am known with the upper case, lower case, and proper case and the code are as follow but what for the sentence case and toggle case.?
Private Sub LowerCaseToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles LowerCaseToolStripMenuItem.Click
TextBox1.SelectedText = TextBox1.SelectedText.ToLower
End Sub
Private Sub UpperCaseToolStripMenuItem_Click_1(sender As Object, e As EventArgs) Handles UpperCaseToolStripMenuItem.Click
TextBox1.SelectedText = TextBox1.SelectedText.ToUpper
End Sub
Private Sub TitleCaseToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles TitleCaseToolStripMenuItem.Click
TextBox1.SelectedText = StrConv(TextBox1.SelectedText, VbStrConv.ProperCase)
End Sub
But yes, put the code only for VB.Net not for C# or else. I am just going for vb.net, I get two to 3 article on C# but none for vb.net so please...
you can also place the project link to help me out Thank you
I wrote time ago a method to do what you need.
Usage:
· For Sentence Case (TitleCase)
· For ToggleCase
· For ProperCase (WordCase)
· For LowerCase
· For UpperCase