I am currently resizing my Delphi5 application from 800×600 to be scalable up to 1440×1080.
The only thing that still looks too small is the Form Caption and the ShowMessage/MessageDlg text.
Am I right in thinking the ShowMessage text is related to the Windows default size?
Is there any way to increase the Form Caption font size? It doesn’t seem connected to the Form font size.
Thanks
The font size of the title bar is handled by windows and is system wide. If you want modify the font or other attibutes you must draw manually the non client area of the form(Windows).
Until Windows XP you can draw directly in the caption(title) bar modifying the font , color and text handling the
WM_NCPAINTmessage, starting with windows vista and the DWM introduction you must use the DwmSetWindowAttribute function with theDWMWA_ALLOW_NCPAINTvalue in order to use this technique.