Font Dialog

  • Thread starter Thread starter Big E
  • Start date Start date
B

Big E

I'm using VB.Net and the FontDialog control.
When the FontDialog pops up it shows Fonts, Sizes, Colors etc...
It does NOT show the ability to use subscripts or superscripts.
My users need to write text sometimes as exponents or trademarks.
I need to let them use subscripts like in Microsoft Word.

Any ideas or examples how to customize the FontDialog control.
 
* "Big E said:
I'm using VB.Net and the FontDialog control.
When the FontDialog pops up it shows Fonts, Sizes, Colors etc...
It does NOT show the ability to use subscripts or superscripts.
My users need to write text sometimes as exponents or trademarks.
I need to let them use subscripts like in Microsoft Word.

Any ideas or examples how to customize the FontDialog control.

That's not supported by the textbox control. You may want to use a
RichTextBox instead and use its 'SelectedCharOffset' property. There is
no such option in the font dialog, you will have to provide an UI.
 
Back
Top