hai,
i am using commondialog controls in vb 6.0 when i am using showfont i am not getting that dialog box instead it was displaying that "fonts are not installed in ur system go and install from control panel", what to do
urgent reply needed
Printable View
hai,
i am using commondialog controls in vb 6.0 when i am using showfont i am not getting that dialog box instead it was displaying that "fonts are not installed in ur system go and install from control panel", what to do
urgent reply needed
http://www.personal.kent.edu/~gthoma...f/cdl/cdl.htmlQuote:
Originally Posted by google
You need to set the flag for what type of fonts to display.
vb Code:
Option Explicit Private Sub Command1_Click() CommonDialog1.Flags = cdlCFBoth CommonDialog1.ShowFont End Sub