Forum: VB.NET May 4th, 2008 |
| Replies: 4 Views: 1,713 In the Select Case, change str1stCharacter to str1stCharacter.ToUpper.
Select Case str1stCharacter.ToUpper() |
Forum: VB.NET May 4th, 2008 |
| Replies: 4 Views: 1,713 Try this:
<code>
Dim strInput As String = ""
Dim str1stCharacter As String = ""
Dim strOutput As String = ""
Dim intStringLength As Integer = 0
strInput... |
Forum: VB.NET Feb 1st, 2008 |
| Replies: 4 Views: 5,770 Try these:
RichTextBox.SelectionFont = New Font("Tahoma", 12, FontStyle.Underline)
RichTextBox.SelectionFont = New Font("Tahoma", 12, FontStyle.Bold)
RichTextBox.SelectionFont = New... |