AutoIt
;Glyph@Glacialwebs.com ;BlackHat Industries ;All Rights Reserved to their respected owners. #include <GUIConstantsEx.au3> GUICreate("ADZero v1.0", 200, 50) $radio1 = GUICtrlCreateRadio("Show", 5, 5, 50, 20) $radio2 = GUICtrlCreateRadio("Hide", 5, 25, 50, 20) GUICtrlCreateLabel("Created by: Glyph" & @CRLF & "Glyph@GlacialWebs.com" & @CRLF & "~BHI", 60, 5, 125, 125) GUISetState() $v = WinGetState("NetZero", "") If $v = 7 Then GUICtrlSetState($radio1, $GUI_CHECKED) ElseIf $v = 5 Then GUICtrlSetState($radio2, $GUI_CHECKED) EndIf While 1 $visible = WinGetState("NetZero", "") If @SEC = "01" Then _ReduceMemory() Sleep(1) $msg = GUIGetMsg() Select Case $msg = $GUI_EVENT_CLOSE ExitLoop Case $msg = $radio1 And BitAND(GUICtrlRead($radio1), $GUI_CHECKED) = $GUI_CHECKED If $visible = 7 Then MsgBox(0, "ADZero", "Window is already shown!", 3) Else WinSetState("NetZero", "", @SW_SHOW) EndIf Case $msg = $radio2 And BitAND(GUICtrlRead($radio2), $GUI_CHECKED) = $GUI_CHECKED If $visible = 5 Then MsgBox(0, "ADZero", "Window is already hidden!", 3) Else WinSetState("NetZero", "", @SW_HIDE) EndIf EndSelect WEnd Func _ReduceMemory() Sleep(1000) DllCall("psapi.dll", "int", "EmptyWorkingSet", "long", -1) EndFunc ;==>_ReduceMemory

Removes the little bar at the bottom (or top) of your desktop, added a GUI.
TODO:
!! :: Still looking into how to remove that empty space at the top (or bottom) after you hide the window.
Edited by Glyph, 03 January 2009 - 11:09 AM.






