I thought a good way to learn C# would be to re-write all the VB.NET apps i've already written. To start small, i went with a RichText editor, but i can't get the font dialog to work. It shows up, but it won't change the text. Heres the code im using:
VB Code:
private void fontDialog1_Apply(object sender, System.EventArgs e) { rtb.SelectionFont = fontDialog1.Font; }




Reply With Quote