Site hosted by Angelfire.com: Build your free website today!

Hide an application from the taskbar

    Home

    Portfolio
     3D Art/Animation
     Programming

    Tutorials
     3D Art/Animation
     Programming

    Work In Progress
     The Interview
     Ex-Smokers logos
     Programming

    About Me



     Free Domain Name - www.YOU.co.nr

This is a really simple technique that can hide your application from the taskbar.

In your main forms On Create event, type the following code:

   SetWindowLong(Application.Handle, GWL_EXSTYLE,
                 GetWindowLong(Application.Handle, GWL_EXSTYLE )
                 or WS_EX_TOOLWINDOW and not WS_EX_APPWINDOW);

That's all there is to it.

 

Previous tutorial