Hello,

I am working on an application that has a console window for debugging. I want a mechanism to minimize the console window on statup to the taskbar.

In the past when i did this without QT, I would do something like:
HWND hwnd = GetConsoleWindow();
ShowWindow(hwnd, 0);

What is the best way to do this?