Click here to Skip to main content
15,885,216 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
VB
RichTextBox1.Font = New Font(RichTextBox1.Font.FontFamily, RichTextBox1.Font.Size + 1, RichTextBox1.Font.Style)
Or
VB
Dim fontStyle As System.Drawing.FontStyle = RichTextBox1.SelectionFont.Style
           Dim fontName As String = ComboBox1.Text
           Dim fontSize As Integer = RichTextBox1.SelectionFont.Size + 1
           Dim FS As New Font(fontName, fontSize, fontStyle)
           RichTextBox1.SelectionFont = FS


Code work it only change the fist letter Font Style To all the font for ex. Abcdefg to abcdfg

Please Help me :D
Posted
Comments
Sergey Alexandrovich Kryukov 31-Dec-11 18:11pm    
Not-informative tags. Is this WPF or Forms? OK, I can see it's Forms, but you need to tag it.
--SA

1 solution

It may mean only one thing: at the moment of call, your selection could be not what you expected. Look where your SelectionStart, SelectionLength are.

—SA
 
Share this answer
 
Comments
Mathsquare 31-Dec-11 18:38pm    
??? I don't get it

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900