I want to add buttons to allow text changes via easy to click buttons and I would also want to add a font selector like Windows WordPad.
How can I add these to a TextArea ?
Thanks,
Robb
I want to add buttons to allow text changes via easy to click buttons and I would also want to add a font selector like Windows WordPad.
How can I add these to a TextArea ?
Thanks,
Robb
There is a good example at http://documentation.xojo.com/index.php/FontCount for fonts. You can use that to populate a PopupMenu.
Buttons are relatively simple to come up with as well for bold, Italic, Underscore. Another PopupMenu for font size.
Set the TextArea SelBold, SelItalic, and so on with these values.
Thanks Michel, the above were good hints in the right direction.