We developed a console application which uses ITaskbarList3::SetProgressValue()
method that works fine when that application is invoked within cmd.exe but it doesn't show any progress when invoked within Conemu
console. No error messages happens anywhere either. The HWND
passed as parameter of ITaskbarList3::SetProgressValue()
is get like this:
HWND hwnd = GetConsoleWindow();
I have no code to show because I don't know an alternative method to do this or what might be issue. I thought the returned HWND could be conemu's rather my application's so I called GetWindowText()
function to check if the window's text was other than my console application but it was a string in same format as cmd's.