-
Loading fonts
Hi,
I am trying to make an option box for font selection in my app.
In order to do that, I am using the common dialog box.
When the app reaches the show method - I get an error that "no fonts are loaded".
I tried looking at the msdn - but couldn't find documentation on "loading the fonts".
Any pointers will be welcome.
Thax.
Dani
-
Re: Loading fonts
Before the showfont line you must set the flag to a specified value, something like this:
Dialog1.flag= cdlCFScreenFonts Or cdlCFPrinterFonts Or cdlCFBoth 'your choice
dialog1.showfont
ivan