Click here to Skip to main content
15,895,283 members
Everything / TaskDialog

TaskDialog

TaskDialog

Great Reads

by Mike Hankey
Using the TaskDialog API as an attactive alternative to the standard windows MessageBox.

Latest Articles

by Mike Hankey
Using the TaskDialog API as an attactive alternative to the standard windows MessageBox.

All Articles

Sort by Score

TaskDialog 

29 Aug 2011 by Mike Hankey
Using the TaskDialog API as an attactive alternative to the standard windows MessageBox.
26 Jul 2020 by Sandeep Mewara
Try using the newer version of WindowsAPICodePack and that should help solve your issue. New WindowsAPICodePack that supports .NET framework v4.6.1: NuGet Gallery | Microsoft-WindowsAPICodePack-Core 1.1.4[^] Try out!
21 Nov 2017 by Member 13126702
I've made my own custom Task Dialog window in WPF. I wanted it to follow the style of my application, and I have some custom content to place on it, so I prefer not using the win32 task dialog. My application uses asynchronous tasks (async/await) to load data from the database. If there's an...
21 Nov 2017 by Graeme_Grant
Use a Queue of Actions to buffer the Dialogs. Now you Dequeue & execute the actions (displaying of dialogues) in sequence, one at a time...
26 Jul 2020 by ekograce
Hi All, I have recently updated my winform desktop application from framework 4.0 to 4.6.1. I have been using microsoft.windowsapicodepack.taskdialog for most of my pop up messagebox. It is no longer working in 4.6.1. I have got the...
12 Apr 2021 by Lazie Wouters 2021
Hi, I'm starting to learn C# in .NET Core 5, I know something about C# in the .NET Framework... But one of the different things I'm seeing in .NET Core is that in place of the MessageBox there is now the TaskDialog. Well, I created a message...
12 Apr 2021 by RannyMeier
Hello Lazie, I believe that you may want to use System.Windows ShowDialog instead of Windows Controls TaskDialog from the Win32 API. For C# .Net Core 5 the ShowDialog is normally used. system.windows.window.showdialog I suppose the...
9 Feb 2014 by Member 10582928
I want to make an interactive and dynamic question-answer dialog with mfc. So far I have a window with a button that initializes the dialog. For each question I generate a CTaskDialog Object. Now the question is: how can I change the position of that taskdialog? When I use MoveWindow() in the...