Miscellaneous

[ Delphi ] – Swap the mouse buttons

procedure SwapMouseButtons(bValue: Boolean);
begin
  if bValue then
    SystemParametersInfo(SPI_SETMOUSEBUTTONSWAP, 1, nil, 0)
  else More >

 

Very PoorPoorRegularGoodVery Good ( Rate this post ! )
Loading ... Loading ...

[ Delphi ] – Hide the desktop icons

ShowWindow(FindWindow(nil, ‘Program Manager’), SW_HIDE); More >

 

Very PoorPoorRegularGoodVery Good ( Rate this post ! )
Loading ... Loading ...

[ Delphi ] – Make the desktop icon text transparent

uses
  Commctrl;

var
  hLV: THandle;

procedure TForm1.GetDesktopListViewHandle;
var

  s1: String;
begin
  hLV := FindWindow('ProgMan', nil);
  hLV := GetWindow(hLV, GW_CHILD); More >

 

Very PoorPoorRegularGoodVery Good ( Rate this post ! )
Loading ... Loading ...