I would like to detect (via c++) what the user has chosen for text size, i.e.:
Smaller – 100%
Medium – 125%
Larger – 150%
Seems like an easy one, just can’t seem to find the answer….
thanks,
A
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This changes the DPI for the DISPLAY device. Use GetDeviceCaps(), LOGPIXELSX/Y. Use CreateIC(L”DISPLAY”, 0, 0, 0) to create the DC. The percentage value corresponds to 96, 120 and 144 dots-per-inch.