Posts: 65
Threads: 22
Joined: Apr 2022
Reputation:
2
I posted earlier about an issue involving font sizes on a screen. I've figured out how I can perform manual calculations, but I need to know the screen scaling factor to make my calculations.
Is there some way that I can ascertain the scaling factor from within QB64?
Posts: 3,964
Threads: 176
Joined: Apr 2022
Reputation:
219
Use _DeskTopWidth, _DeskTopHeight for maximum screen pixels, scale from those numbers.
b = b + ...
Posts: 2,171
Threads: 222
Joined: Apr 2022
Reputation:
103
Did you check out my post, here?
https://qb64phoenix.com/forum/showthread.php?tid=337
_HEIGHT
_WIDTH
_FONTHEIGHT
_FONTWIDTH
Shoot first and shoot people who ask questions, later.
Posts: 65
Threads: 22
Joined: Apr 2022
Reputation:
2
Just to follow up and close the loop on this question, using the _FONTHEIGHT and _FONTWIDTH worked perfectly for me. The calculations work perfectly using that.