whats new ¦  programming tips ¦  indy articles ¦  intraweb articles ¦  informations ¦  links ¦  interviews
 misc ¦  tutorials ¦  Add&Win Game

Tips (1541)

Database (90)
Files (137)
Forms (107)
Graphic (114)
IDE (21)
Indy (5)
Internet / LAN (130)
IntraWeb (0)
Math (76)
Misc (126)
Multimedia (45)
Objects/
ActiveX (51)

OpenTools API (3)
Printing (35)
Strings (83)
System (266)
VCL (242)

Top15

Tips sort by
component


Search Tip

Add new Tip

Add&Win Game

Advertising

82 Visitors Online


 
...list all Windows with a Button on the taskbar?
Autor: Thomas Stutz
[ Print tip ]  

Tip Rating (7):  
     


function GetText(Wnd: HWND): string;
var 
  
textlength: Integer;
  Text: PChar;
begin
  
textlength := SendMessage(Wnd, WM_GETTEXTLENGTH, 0, 0);
  if textlength = 0 then Result := ''
  else
  begin
    
GetMem(Text, textlength + 1);
    SendMessage(Wnd, WM_GETTEXT, textlength + 1, Integer(Text));
    Result := Text;
    FreeMem(Text);
  end;
end;

function EnumWindowsProc(Wnd: HWND; lParam: lParam): BOOL; stdcall;
begin
  
Result := True;
  if (IsWindowVisible(Wnd) or IsIconic(wnd)) and
    
((GetWindowLong(Wnd, GWL_HWNDPARENT) = 0) or
    
(GetWindowLong(Wnd, GWL_HWNDPARENT) = GetDesktopWindow)) and
    
(GetWindowLong(Wnd, GWL_EXSTYLE) and WS_EX_TOOLWINDOW = 0) then
    
Form1.Listbox1.Items.Add('Handle: ' + IntToStr(Wnd) + ',Text:  ' + GetText(Wnd));
end;


procedure TForm1.Button1Click(Sender: TObject);
var
  
Param: Longint;
begin
  
EnumWindows(@EnumWindowsProc, Param);
end;


 

Rate this tip:

poor
very good


Copyright © by SwissDelphiCenter.ch
All trademarks are the sole property of their respective owners