|
Visibility of Taskbar Buttons
A taskbar button is placed on the taskbar whenever an application creates a
unowned primary window. To ensure that the window button is placed on the
taskbar, create the window by calling CreateWindowEx and include the WS_EX_APPWINDOW style. To prevent the window button from
being placed on the taskbar, create the window by calling CreateWindowEx and include the WS_EX_TOOLWINDOW style. As an alternative, you can create a
hidden window and make it the owner of your primary window.
The window button typically contains the application icon and title. However,
if the application does not contain a window menu, the window button is created without the icon.
If you want your application to display a message to the user while its window
is not active, use the FlashWindow function to let the user know that a message is waiting. This function
flashes the window button. Once the user clicks the window button to activate the
window, your application can display the message.
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|