Is there any way to hide the taskbar button when making a DllCall that produces a dialog? I'm using the following code.
Code:
#NoTrayIcon
#NoEnv
#SingleInstance force
SHERB_NOCONFIRMATION := 1
SHERB_NOPROGRESSUI := 2
SHERB_NOSOUND := 4
Flag := 0 ; Combine any of the above values
DllCall("Shell32\SHEmptyRecycleBinA", UInt,0, UInt,0, UInt, Flag)
When the confirmation dialog is displayed, a taskbar button is displayed. I want to mimic the standard Windows empty recycle bin behavior which does not show the taskbar button.
Thanks.