Global $hDesktop = WinGetHandle('[CLASS:Progman;TITLE:Program Manager]')
Global $tDesktop = -1
$Panel = GUICreate('', @DesktopWidth+1, 20, 0, 0, $WS_POPUP)
GUISetState(@SW_SHOWNA)
While 1
$hDesktop = WinGetHandle('[CLASS:Progman;TITLE:Program Manager]')
if $hDesktop > 0 And $hDesktop <> $tDesktop Then
_WinAPI_SetParent($Panel, $hDesktop)
$tDesktop = $hDesktop
EndIf
Sleep(1)
WEnd