Quote:
Originally Posted by nancychiri I have searched everywhere...any way I can change the font size on incoming calls so I can see who is calling me? Where in the registry is the font size located? |
There are several things to try.
First, if you want to make the system font larger (but not necessarily in every application), you can try the
Accessibility settings applet and change the
System font size to
Large.
That didn't work on the call status screens, though.
If you don't like that, you can edit the registry, but there are a lot of places to check.
The first is
HKLM\System\GDI\SYSFNT where you can change several values, like:
- Ht -- The font height (or size). The current value here looks big, but it's actually a negative number (ones- or twos-complement signed binary, so FFFFFFFF is -1, I think). Making the number smaller should make the font bigger. You can also try positive numbers (like some of the fonts mentioned below use), but there's some difference between using positive and negative sizes that I never remember.
- It -- Turns Italics off (0) or on (1).
- Nm -- The font name. If you have other fonts, you can use them.
- Wt -- The font weight (or boldness). The default (400) is normal; 700 is usually used for bold.
I don't know what
CS or
Qt do.
However, that may not hit every possible control. To change the fonts on various dialog controls, you need to check
HKLM\System\GWE and the following keys (which have similar values as SYSFNT):
- Button -- Changes the font on dialog buttons.
- Menu\BarFnt -- Possibly changes the font on menu bars (maybe the softkeys on the Q).
- Menu\PopFnt -- Changes the font on pop-up menus.
- OOMFnt -- Changes the OOM font (maybe the PIM applications, which used the POOM databases).
Make sure you reboot after these changes.
So what does it all mean? Well, I changed the SYSFNT
Ht to FFFFFFCD (so the font should be like 32 sizes bigger),
It to 1 and
Wt to 700. Some things got really big fonts (like options dialogs, IE Favorites and warning messages), but most applications that I tried didn't (Web pages, E-mail, the call status screens, etc.). The title bar was in Italic and maybe bold, too.
I also tried changing the OOMFnt size and adding font information for the MsgBox GWE item, but neither of those worked.
I figured I had spent more than enough time on this, so I'm not sure what (if anything) will do what you want on the Smartphone OS, but give those a try. However, it's possible that the call status screens have hard-coded font sizes and can't be changed.
Steve