I'd like to know where the examples are for these components. I am sure every component has an example somewhere.
I'd like to change the font in my app as I am scrolling through these fonts. I don't want to use a FontDialog because you need to actually select a single font, then click APPLY to see the changes. So the LMDLabeledFontListBox looks perfect, but how do I get the font name of the selected font?
I tried
LabelNewFont->Font->Name = ElFontListBox->Font->Name;
LabelNewFont->Font->Name = ElFontListBox->FontName;
Thanks for the help!
Doug
Comments
LabelNewFont->Font->Name = LMDLabeledFontListBox->Items->Strings[LMDLabeledFontListBox->ItemIndex];
But would still like to see the examples, especially for the ElFontListBox
Thanks!