fenster style???
-
gibt es einen fensterstyle bei dem man das fenster sieht des aber nicht auf der taskleiste zusehen ist????
-
bestimmt gibts sowas...
Ich mach zB grad nen proggi, mit hauptfenster und zwei unterfenstern, die sind nciht zu sehen auf der taskleiste, style dazu ist:
WS_OVERLAPPED
-
und bei einem parentwindow??
-
Müßte (weiß es nicht genau) WS_POPUP sein...
-
bei WM_POPUP hats nur kein rand is aber troztdem zusehen
-
Na dann schauste halt selber in der MSDN nach und probierst aus...
-
kann es auch sein das es kein style ist sonder was anderes
-
MSDN:
Visibility of Taskbar Buttons
The shell creates a button on the taskbar whenever an application creates a window that isn't owned. To ensure that the window button is placed on the taskbar, create an unowned window with the WS_EX_APPWINDOW extended style. To prevent the window button from being placed on the taskbar, create the unowned window with the WS_EX_TOOLWINDOW extended style. As an alternative, you can create a hidden window and make this hidden window the owner of your visible window.The window button typically contains the application icon and title. However, if the application does not contain a system 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 theFlashWindow 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.