I'm trying to add support for different currency symbols to an app. I can get the relevant symbol from the locale (using the AHLocale library), but some users have asked for the ability to select a different symbol.
I have a list of unicode currency symbols & can load them into a listview using Chr(unicode) or use CSBuilder to create them, however some of them aren't supported by the various fonts I've tried. What ends up happening is that I either end up with a blank item or a rectangular character in the listview.
So how do I tell if the font I'm using can support the unicode char I'm trying to use? I've tried testing for null & for "", but I still end up with them in the listview. If I could tell that the char isn't supported, then I could simply not load it into the listview...
- Colin.
I have a list of unicode currency symbols & can load them into a listview using Chr(unicode) or use CSBuilder to create them, however some of them aren't supported by the various fonts I've tried. What ends up happening is that I either end up with a blank item or a rectangular character in the listview.
So how do I tell if the font I'm using can support the unicode char I'm trying to use? I've tried testing for null & for "", but I still end up with them in the listview. If I could tell that the char isn't supported, then I could simply not load it into the listview...
- Colin.