06-22-2006, 04:52 PM
is it possible to remove a window from the window taskbar without hiding
the window itself ?
thanks
the window itself ?
thanks
|
Remove window from taskbar
|
|
06-22-2006, 04:52 PM
is it possible to remove a window from the window taskbar without hiding
the window itself ? thanks
06-22-2006, 04:57 PM
;/
06-22-2006, 05:24 PM
thanks.
06-29-2007, 08:18 PM
whenever a deleted window is activated it will show up in the taskbar again.
do i have to use an 'activated window hook' or' do you know a way to hide the taskbar button permantly.
06-29-2007, 08:58 PM
Use hook or trigger.
Or try this: SetWindowLong(hwnd GWL_HWNDPARENT GetDesktopWindow) This removes the taskbar button even without ModifyTaskbar. Owned windows are not added to taskbar, unless have WS_EX_APPWINDOW exstyle, which can be removed with SetWinStyle. SetWindowLong(hwnd GWL_HWNDPARENT 0) will add taskbar button. Also check if the window is already owned. If yes, just remove WS_EX_APPWINDOW without changing owner. To check it, use if(GetWindow(hwnd GW_OWNER)).
06-29-2007, 09:27 PM
Function TaskbarButton
;/Test code
06-29-2007, 09:57 PM
perfect !!!!
i trigger it with middle click on taskbar button. function name: middleclick trigger: #Mh1 //middleclick ;\
06-06-2009, 03:37 PM
in windows 7 it does not work.
do you have an idea why?
06-06-2009, 03:55 PM
int hwnd=win("Notepad") ;;unowned
;int hwnd=win("QM - Threads") ;;owned with WS_EX_APPWINDOW exstyle TaskbarButton 2 hwnd 3 TaskbarButton 1 hwnd Tested on 64 bit beta, worked.
Do you have an idea how to do that with UWP apps in Windows 10?
I tried it with Calc (german: Rechner) I did some research and from what i can find it seems not be supported, but you so often know more. https://stackoverflow.com/questions/4678...6#46828926 Function Hide_Calc_Taskbar_Button |
|
« Next Oldest | Next Newest »
|