Valhalla Legends Archive

Programming => General Programming => Visual Basic Programming => Topic started by: Spht on December 12, 2003, 03:26 PM

Title: RichTextBox
Post by: Spht on December 12, 2003, 03:26 PM
Is there a simple way to prevent RTF extensions from being used on a RichTextBox? Currently, when _Change() is called, I reset all styles (.SelFont, .SelBold, .SelColor, etcetera) to maintain my default font settings.
Title: Re:RichTextBox
Post by: Mesiah / haiseM on December 15, 2003, 03:45 PM
So you want it to somehow whipe away all set rtf parameters each time the change event is called?
Title: Re:RichTextBox
Post by: Spht on December 15, 2003, 04:11 PM
Quote from: MesiaH on December 15, 2003, 03:45 PM
So you want it to somehow whipe away all set rtf parameters each time the change event is called?

That's what I'm doing manually. But it tends to be slow. I rather just have it not allow any RTF to be entered at all, but I'd still like to use a RichTextBox.