a little Bug...
in
unit unitDemoDeskBand.pas,
Delphi-Quellcode:
if pdbi.dwMask or DBIM_INTEGRAL <> 0 then //Line 393
begin
pdbi.ptIntegral.x := 25;
pdbi.ptIntegral.y := 22; //this size
end;
Modified to:
Delphi-Quellcode:
if pdbi.dwMask or DBIM_INTEGRAL <> 0 then
begin
pdbi.ptIntegral.x := 25;
pdbi.ptIntegral.y := -1; //to this size
end;
then, if the form been a float-form, the form will be a normal and can be a size form.