cupboy 0 Posted November 12 (edited) The form is rather small in the IDE making it hard to work with. Is there a way to adjust the size of the form in the IDE? Could I make it the same size as it is when the program is run? I am using version 11.2. Edited November 12 by cupboy Share this post Link to post
PeterBelow 238 Posted November 12 I you are running the IDE on a monitor with scaling set to anything other than 100% it matters if you have enabled high DPI support for the form designer or not (the latter is equivalent to launching the IDE via the Delphi (DPI unware) shortcut the installer provides in the start menu group. You can find the relevant setting in the Tools -> Options dialog: Share this post Link to post
cupboy 0 Posted November 14 (edited) Thanks! I set it to Automatic (Screen PPI). I was also able to uncheck Scaled for the form. I'll have to do more testing but everything looks good so far. I'll have to try it with a standard monitor and see what happens. update: Set Scaled back to true since the bitmaps on the buttons were tiny otherwise and now they look normal. Edited November 15 by cupboy Share this post Link to post
PeterBelow 238 Posted Friday at 01:55 PM 15 hours ago, cupboy said: Thanks! I set it to Automatic (Screen PPI). I was also able to uncheck Scaled for the form. I'll have to do more testing but everything looks good so far. I'll have to try it with a standard monitor and see what happens. update: Set Scaled back to true since the bitmaps on the buttons were tiny otherwise and now they look normal. Take a look at TVirtualImagelist and TVirtualimageCollection, these allow you to supply different versions (sizes) of bitmaps optimized for the DPI settings your app may encounter in the wild. This tends to look better than getting the images scaled at runtime from a single sized version. Share this post Link to post