Wyatt
2012-05-23 18:35:16 UTC
But if I click bold first then click italic, the bold will go away and not stay with the italic in the text.
I know I need more if statements and to use the & sign. But for some reason it isn't working...
Code:
If chkBold.Checked = True & chkItalic.Checked = True Then rtbInformation.Font = New Font("Franklin Gothic Medium", 10, _
FontStyle.Bold & FontStyle.Italic) _
f chkBold.Checked = True & chkItalic.Checked = False Then rtbInformation.Font = New Font("Franklin Gothic Medium", 10, _
FontStyle.Bold) _
Else rtbInformation.Font = New Font("Franklin Gothic Medium", 10, FontStyle.Regular)
Thanks! :]