Tip - CTaskDialog is a powerful replacement for the standard message boxes.
Details - Windows Vista introduced the concept of Task Dialogs. Those are a powerful replacement for the standard message boxes.In the simplest configuration, it looks like a standard message box, but in more advanced forms it can have progress bars, custom buttons or radio buttons.The MFC in Visual C++ 2010 has a new class called CTaskDialog that is a wrapper around the task dialog API.
Details - Windows Vista introduced the concept of Task Dialogs. Those are a powerful replacement for the standard message boxes.In the simplest configuration, it looks like a standard message box, but in more advanced forms it can have progress bars, custom buttons or radio buttons.The MFC in Visual C++ 2010 has a new class called CTaskDialog that is a wrapper around the task dialog API.
Reference -
1. http://msdn.microsoft.com/en-us/library/dd293651.aspx
2. http://www.nuonsoft.com/blog/2009/06/10/ctaskdialog-in-mfc-in-visual-c-2010/
1. http://msdn.microsoft.com/en-us/library/dd293651.aspx
2. http://www.nuonsoft.com/blog/2009/06/10/ctaskdialog-in-mfc-in-visual-c-2010/
Posted by - Vijesh Vijay
Please see the Win32 implementation of same using Native API.
ReplyDelete1. http://codereflect.com/2010/06/20/windows-7-task-dialog-part-1-displaying-a-basic-task-dialog/
2. http://codereflect.com/2010/07/07/windows-7-task-dialog-part-2-a-more-detailed-task-dialog/