1. Win32lib
- Posted by gwalters Dec 18, 2011
- 1447 views
I have been using an older version of win32lib. I scale the font size I use by knowing the screen size for all my apps using the following code.
fontType = "Courier New" maxX = getSystemMetrics(SM_CXFULLSCREEN) maxY = getSystemMetrics(SM_CYFULLSCREEN)
I have discovered 2 problems. One is that the task bar is not removed from the result. The other is (in windows 7) if the user turns on larger fonts and larger icons, my screens are now too large and are clipped top and bottom. So the functions do not report this change and maxX and maxY are not correct.
Suggestions how to detect this would be appreciated.