Font Dialog to text box example...

  • Thread starter Thread starter Anthony Nystrom
  • Start date Start date
A

Anthony Nystrom

Can someone give me a sample of linking the windows forms component font
dialog to a textbox or rtf component... I don't know why I am having trouble
with this...

Thanks,

Anthony Nystrom
 
* "Anthony Nystrom said:
Can someone give me a sample of linking the windows forms component font
dialog to a textbox or rtf component... I don't know why I am having trouble
with this...

\\\
Dim f As New FontDialog
If f.ShowDialog = DialogResult.OK Then
Me.RichTextBox1.SelectionFont = f.Font
End If
///
 
Back
Top