d3mon Posted June 9, 2008 Posted June 9, 2008 how to make off visible window on task bar ? No-life of autoit...what could be better ?LAST SCRIPTS WITH AUTO-IT : CLICK HERE
Airwolf Posted June 9, 2008 Posted June 9, 2008 how to make off visible window on task bar ?I believe you're looking to hide a window... in which case you'll need to use WinSetState() - take a look at it in the help file for parameters. Certifications: A+, Network+, Security+, Linux+, LPIC-1, MCSA | Languages: AutoIt, C, SQL, .NETBooks: AutoIt v3: Your Quick Guide - $7.99 - O'Reilly Media - September 2007-------->[u]AutoIt v3 Development - newbie to g33k[/u] - Coming Soon - Fate Publishing - Spring 2013UDF Libraries: SkypeCOM UDF Library | ADUC Computers OU Cleanup | Find PixelChecksumExamples: Skype COM Examples - Skype4COMLib Examples converted from VBS to AutoIt
d3mon Posted June 9, 2008 Author Posted June 9, 2008 I believe you're looking to hide a window... in which case you'll need to use WinSetState() - take a look at it in the help file for parameters.No...I have a window with show state , but i don't want it to be in taskbar No-life of autoit...what could be better ?LAST SCRIPTS WITH AUTO-IT : CLICK HERE
Valuater Posted June 9, 2008 Posted June 9, 2008 ???? #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> GUICreate("My GUI", 400, 500, -1, -1, -1,$WS_EX_TOOLWINDOW) GUISetState() Sleep(3000) 8)
d3mon Posted June 10, 2008 Author Posted June 10, 2008 (edited) Thanks Edited June 11, 2008 by d3mon No-life of autoit...what could be better ?LAST SCRIPTS WITH AUTO-IT : CLICK HERE
y4m4 Posted June 10, 2008 Posted June 10, 2008 ???? #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> GUICreate("My GUI", 400, 500, -1, -1, -1,$WS_EX_TOOLWINDOW) GUISetState() Sleep(3000) 8) I was looking to do this as well. Valuater's solution worked for me... $WS_EX_TOOLWINDOW Thanks.
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