Jump to content

how to hide windows,name in taskbar


Recommended Posts

is there a way to hide the name of the window on the taskbar ??

SplashScreen("Removing previous versions ...", $AppName)


Func SplashScreen($SplashText, $ProgramText)
    Local $Strlen = StringLen($ProgramText)
    Local $Font="Comic Sans MS"     
    GUICreate("SplashScreen", 550, 130, -1, 1, $WS_POPUP, BitOR($WS_EX_DLGMODALFRAME, $WS_EX_TOPMOST))
    GUICtrlCreatePic(@TempDir & "\Header.JPG",10, 10, 0, 0, 0)
    GUICtrlCreateLabel($ProgramText, 500 - ($Strlen*10 ), 25, 120 + ($Strlen*10) , 30)
    GUICtrlSetBkColor(-1, $GUI_BKCOLOR_TRANSPARENT)
    GUICtrlSetFont (-1, 16, 400, 2, $Font)

    $GuiSplashText = GUICtrlCreateLabel($Splashtext, 20, 90, 510, -1)
    GUICtrlSetFont (-1, 12, 400, 4, $Font)

    GUISetState(@SW_SHOW)
EndFunc

Any help would be welcome ?

Edited by FeReNGi
Link to comment
Share on other sites

  • Moderators

A working example would be great!!

Try this:

GUICreate("SplashScreen", 550, 130, -1, 1, $WS_POPUP, BitOR($WS_EX_DLGMODALFRAME, $WS_EX_TOPMOST, $WS_EX_TOOLWINDOW))

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

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...