Thema: Delphi Transparenz bei DeskBars

Einzelnen Beitrag anzeigen

sailxia

Registriert seit: 9. Apr 2006
21 Beiträge
 
#4

Re: Transparenz bei DeskBars

  Alt 30. Jun 2006, 04:38
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.
  Mit Zitat antworten Zitat