1.

Solve : Font problem in help system and other programs?

Answer» <html><body><p>So here's what I got:<br/><br/><br/><br/>I get the same font in Adobe Type Manager:<br/><br/><br/><br/>I can <a href="https://interviewquestions.tuteehub.com/tag/make-249948" style="font-weight:bold;" target="_blank" title="Click to know more about MAKE">MAKE</a> that font change by deleting the current font it is using. It may then use something better, or it might be worse. Any ideas how I can fix this?I solved the problem!<br/><br/>Using the clever utility, HwndSpy, I was able to <a href="https://interviewquestions.tuteehub.com/tag/determine-437910" style="font-weight:bold;" target="_blank" title="Click to know more about DETERMINE">DETERMINE</a> that all of the instances where the font was not corresponding to what was expected (in this case, the default Windows font of MS Sans Serif), the font that was being used by the dialog was listed as "MS Shell <a href="https://interviewquestions.tuteehub.com/tag/dlg-432184" style="font-weight:bold;" target="_blank" title="Click to know more about DLG">DLG</a>". I searched the Internet and determined that Windows 98, while it seems to be advertized as using the registry to define MS Shell Dlg (as everything NT and later do) <a href="https://interviewquestions.tuteehub.com/tag/actually-848884" style="font-weight:bold;" target="_blank" title="Click to know more about ACTUALLY">ACTUALLY</a> sets the value for this in the win.ini file! In looking at my win.ini, I saw that at some point that specification had been deleted (who knows when - I've had an issue like this for some time). So I added the line<br/><br/>Code: <a>[Select]</a><br/>[FontSubstitutes]<br/>MS Shell Dlg=MS Sans Serif<br/><br/><br/>and everthing is fixed! I hate the registry <a href="https://interviewquestions.tuteehub.com/tag/anyway-2436609" style="font-weight:bold;" target="_blank" title="Click to know more about ANYWAY">ANYWAY</a>, so I was glad to find the solution was with something as simple as win.ini! Hope this helps some other poor 98 fan.Here's a picture of the help system to show the difference:<br/><br/><br/><br/>It had been selecting different fonts for the tabs and menu bar, though they were all specified as MS Shell Dlg. The Adobe Type Manager is behaving itself now, too.</p></body></html>


Discussion

No Comment Found