In PBForms 1.51 it is possible to specify a dialog font. This then appears to serve as the default font for any controls added to the dialog. No problem.
However, although the code generated includes (for example)
the font in the dialog title remains unchanged. I'm using the default styles, which include %DS_SETFONT. Is this correct?
However, although the code generated includes (for example)
Code:
hFont1 = PBFormsMakeFont("Courier", 15, 700, %FALSE, %TRUE, %FALSE, %ANSI_CHARSET) DIALOG SEND hDlg, %WM_SETFONT, hFont1, 0
Comment