ffrankcool Posted May 2, 2008 Share Posted May 2, 2008 (edited) Hello, I've been searching the forum for hours now and I can't find anything about this So what I want to do is hide my AutoIt program from the taskbar WITHOUT hiding the window! Could anyone help me out? Edited May 2, 2008 by ffrankcool Link to comment Share on other sites More sharing options...
AdmiralAlkex Posted May 2, 2008 Share Posted May 2, 2008 From the helpfile= $WS_EX_TOOLWINDOW .Some of my scripts: ShiftER, Codec-Control, Resolution switcher for HTC ShiftSome of my UDFs: SDL UDF, SetDefaultDllDirectories, Converting GDI+ Bitmap/Image to SDL Surface Link to comment Share on other sites More sharing options...
ffrankcool Posted May 2, 2008 Author Share Posted May 2, 2008 From the helpfile= $WS_EX_TOOLWINDOWHow would I integrate it to my current GUI without loosing the 3 buttons at the top of the window: $sGUI = GUICreate("Boudi's Tools", 125, 85, Default, Default, $GUI_SS_DEFAULT_GUI) Link to comment Share on other sites More sharing options...
AdmiralAlkex Posted May 2, 2008 Share Posted May 2, 2008 Hmm I am not sure of that one, GUI's aren't my expertise, but SOMEone gotta know, give it some time..... .Some of my scripts: ShiftER, Codec-Control, Resolution switcher for HTC ShiftSome of my UDFs: SDL UDF, SetDefaultDllDirectories, Converting GDI+ Bitmap/Image to SDL Surface Link to comment Share on other sites More sharing options...
FreeFry Posted May 2, 2008 Share Posted May 2, 2008 I'm posting the code here frank(we spoke on msn earlier): #include <GUIConstants.au3> $Form1 = GUICreate("Form1", 633, 447, 193, 125, -1, -1, WinGetHandle("Program Manager")) ; <-- creating the window as a child of another window will remove it's entry in the task bar GUISetState(@SW_SHOW) While 1 Switch GUIGetMsg() Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd JoshuaBarnette and Abryce 1 1 Link to comment Share on other sites More sharing options...
JoshuaBarnette Posted September 30, 2019 Share Posted September 30, 2019 An old post, but helped me get the taskbar icon to not show up. Using... GUICreate('Password Expiration Notification', 850, 420, -1, -1, $WS_POPUPWINDOW, $WS_EX_TOPMOST, WinGetHandle('Program Manager')) There is no way to close or move the window without clicking OK or killing the process in TaskManager. Either way we can guarantee that the user saw the message. Thanks to FreeFry and ffrankcool for the posts. NassauSky 1 Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now