I need to create a windows application in C++ and it has to show just a TaskDialog
(see http://msdn.microsoft.com/en-us/library/windows/desktop/bb760540(v=vs.85).aspx ). The TaskDialog
should show a text passed as parameter to the command line.
I can make a "Win32 Console Application" and call TaskDialog
but then I will see the black windows of the console.
I can make a "Windows Application" and just calling TaskDialog
inside WinMain
, is there any problem with this solution?
Any other idea?