1.) Create a new application. 2.) Set scaled false for the main form, set it's width to 100x100 3.)  Run the application.   Delphi will ignore the size of the from inside the DFM and will display the default 640x480 form. I cannot check the QP portal as I cannot log into.   I admit this is a perfect tool to check whenever you have somewhere scaled false but also quite an interesting bug.  Examine the DFM there is no With or Height for the form:   object Form1: TForm1
  Left = 0
  Top = 0
  Caption = 'Form1'
  ClientHeight = 61
  ClientWidth = 84
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -12
  Font.Name = 'Segoe UI'
  Font.Style = []
  Scaled = False
  OnActivate = FormActivate
  PixelsPerInch = 96
  TextHeight = 15
  object Label1: TLabel
    Left = 33
    Top = 43
    Width = 34
    Height = 15
    Caption = 'Label1'
  end
end   Add those properties to the DFM and save it. Run the program the form is displayed correctly. Display the form again (Alt + F12) execute the application Width and Height are deleted from the DFM and again the form will ignore the ClientHeight/ClientWidth properties.