DarkNecromancer Posted December 6, 2005 Posted December 6, 2005 Hay, I made myself a special clock and it doesn't take up very much room on the desktop but the problem I'm having is it takes up a spot on the task bar. Is there some way that i can remove my program from being an item on the task bar? There's alot of Gui options but I havn't seen anything to deal with this. ~Dark
GaryFrost Posted December 6, 2005 Posted December 6, 2005 #NoTrayIcon or Opt("TrayIconHide",1) SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
BigDod Posted December 6, 2005 Posted December 6, 2005 Here is a basic GUI made with Koda. It does not appear in the task bar but does appear in systray. #include <GUIConstants.au3> ; == GUI generated with Koda == $Form1 = GUICreate("AForm1", 198, 164, 192, 125, -1, $WS_EX_TOOLWINDOW) GUISetState(@SW_SHOW) While 1 $msg = GuiGetMsg() Select Case $msg = $GUI_EVENT_CLOSE ExitLoop Case Else ;;;;;;; EndSelect WEnd Exit Time you enjoyed wasting is not wasted time ......T.S. Elliot Suspense is worse than disappointment................Robert Burns God help the man who won't help himself, because no-one else will...........My Grandmother
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