Jump to content

an easy way to keep my gui off of the taskbar like a splash screen?


Recommended Posts

an easy way to keep my gui off of the taskbar like a splash screen?

i have a gui for syncing my ftp with a folder but i cant find anything to keep it off of my taskbar.

if someone could just point me in the general direction i will try to figure the rest out myself.

Link to comment
Share on other sites

an easy way to keep my gui off of the taskbar like a splash screen?

i have a gui for syncing my ftp with a folder but i cant find anything to keep it off of my taskbar.

if someone could just point me in the general direction i will try to figure the rest out myself.

Post a screen shot please. A Little Confused.

www.abox.orgAvery HowellVisit My AutoIt Websitehttp://www.abox.org
Link to comment
Share on other sites

Pay attention to the window styles and extended styles when creating your GUI with GUICreate.

You shouldn't need any more direction than this :)

thanks

if i have to come back ill post some screenshots.

i have another program calling my autoit3 gui which is a progress bar.

i dont want the progress bar to have its own spot on the task bar i want it invisible so it looks as if it is the same application running.

sorry i didnt explain myself well originally.

Link to comment
Share on other sites

#include <WindowsConstants.au3>

$hGui = GUICreate('', 230, 130, Default, Default, BitOR($WS_POPUP, $WS_BORDER), BitOR($WS_EX_TOOLWINDOW, $WS_EX_CLIENTEDGE))
GUISetBkColor(0x199F6F)
$ProgBar = GUICtrlCreateProgress(0, 130/2-8, 230, 15, 0, 0)
GUICtrlSetData(-1, 0)
GUISetState()

For $i = 0 To 100 Step 5
    GUICtrlSetData(-1, $i)
    Sleep(100)
Next
GUIDelete($hGui)
Exit

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