Hello,
my TMS Office 2010 ribbon application (Delphi XE) works fine under default dpi (96). If i increase the dpi value, between 96 and 150 there are some problems (please show the example).
With a value of 150 there a no problems.
http://temp.photoident.de/96dpi.png
http://temp.photoident.de/120dpi.png
Best regards
Marco.
We'll investigate what can be done about this.
Set 'TForm.Scaled := false as it does not work properly and scale it in form's create like below.
procedure TTMSForm1.FormCreate(Sender: TObject);
begin
if Screen.PixelsPerInch <> PixelsPerInch then
begin
ScaleBy(Screen.PixelsPerInch, PixelsPerInch);
end;
end;
begin
if Screen.PixelsPerInch <> PixelsPerInch then
begin
ScaleBy(Screen.PixelsPerInch, PixelsPerInch);
end;
end;