illusionmist, on 26 December 2010 - 04:36 PM, said:
Thanks that would be very appreciated, since it shows background running apps for me and can clutter up the dock.
Posted 27 December 2010 - 03:07 AM
illusionmist, on 26 December 2010 - 04:36 PM, said:
Posted 06 January 2011 - 09:03 PM
function EnumWindowsFunc(wHandle:THandle; List:TStringList):boolean; stdcall;
var
caption: array[0..256]of char;
dwStyle,dwexStyle: longint;
begin
dwStyle:=GetWindowLongPtr(wHandle,GWL_STYLE);
dwexStyle:=GetWindowLongPtr(wHandle,GWL_EXSTYLE);
if (dwStyle and WS_VISIBLE = WS_VISIBLE)
and (GetWindowText(wHandle,caption,sizeof(caption)-1)<>0)
and (GetParent(wHandle)=0)
and (whandle<>application.Handle){exclude me}
then
begin
if (dwexStyle and WS_EX_APPWINDOW=WS_EX_APPWINDOW)
and (GetWindow(wHandle,GW_OWNER)=whandle)
then List.Add(caption)
else if (dwexStyle and WS_EX_TOOLWINDOW =0 )
and (GetWindow(wHandle,GW_OWNER)=0)
then List.Add(caption);
end;
result:=true;
end;
Posted 02 March 2011 - 01:44 AM
Posted 04 March 2011 - 10:00 PM
psycodelic, on 04 March 2011 - 09:49 PM, said:
Posted 04 March 2011 - 10:14 PM
Vistapple, on 04 March 2011 - 10:00 PM, said:
Posted 06 March 2011 - 05:04 AM
Vistapple, on 04 March 2011 - 10:00 PM, said:
Posted 02 April 2011 - 08:25 AM
Posted 05 June 2011 - 06:22 AM
Posted 05 July 2011 - 11:31 PM
Posted 21 September 2011 - 08:24 PM
Posted 28 December 2011 - 12:59 AM
iPhone Battery.zip (486.43K)