Jump to content

Hide autoit windows in taskbar?


maqleod
 Share

Recommended Posts

#include <GUIConstants.au3>
Opt("TrayIconHide", 1)          ;0=show, 1=hide tray icon
$Gui = GUICreate('Test', 100,100, 0,0, $WS_POPUP, $WS_EX_TOOLWINDOW+$WS_EX_TOPMOST )
$Button1=GUICtrlCreateButton('End', 10,10)

GUISetState(@SW_SHOW)

While 1
    $msg = GUIGetMsg()
    
    If $msg = $GUI_EVENT_CLOSE Or $msg=$Button1 Then ExitLoop
Wend

Now have a guess. :whistle:

Edited by dabus
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...