Tagged Questions
The taskdialog tag has no wiki summary.
4
votes
2answers
133 views
Getting the color value of TaskDialog Main Instruction text
The TaskDialog in Windows7 has a blue Main Instruction text at the top. Is there a way to get that color as a Brush value in WPF?
3
votes
1answer
961 views
EntryPointNotFoundException when using TaskDialog in C#
I'm using the following code to call a TaskDialog.
[DllImport("ComCtl32", CharSet = CharSet.Unicode, PreserveSig = false)]
internal static extern void TaskDialogIndirect(
[In] ref ...
2
votes
2answers
565 views
C#: comctl32.dll version 6 in debugger
I'm using the WindowsAPICodePack for TaskDialog. When I try to show the dialog it says that it needs to load version 6 of comctl32.dll. So I added version 6 to the app.manifest and tried running it. ...
1
vote
1answer
179 views
SendMessage with TDM_CLICK_BUTTON return value is always zero
In my C# application I'm trying to use the TDM_CLICK_BUTTON message to click a button in a TaskDialog. This basically works just fine. What I expect to happen, happens. I even receive the ...
1
vote
1answer
338 views
TaskDialog default button
stackoverflow just works faster :)
I'm using the Windows® API Code Pack for Microsoft® .NET Framework to access Windows 7 API and I want to change my old MessageBox to TaskDialog.
One thing I cannot ...
1
vote
1answer
376 views
TaskDialog always on top in Visual C++
Is there a way to make a TaskDialog always on top (ie, system modal)?
I've checked the TaskDialogConfig structure (http://msdn.microsoft.com/en-us/library/bb787473%28VS.85%29.aspx), but I'm not ...
0
votes
2answers
29 views
How to create a windows application in C++ showing just a TaskDialog
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 ...
0
votes
2answers
54 views
TaskDialog with no buttons
Is it possible to show the TaskDialog with no buttons? I would like to be able to show just a progress bar (with a message), and then close the TaskDialog window when when my processing is complete ...
0
votes
1answer
151 views
Error showing TaskDialog with both ProgressBar and Custom Button
I am using the TaskDialog within WindowsAPICodePack. When I try to create a TaskDialog without just a TaskDialogProgressBar and TaskDialogButton it throws the follow exception.
...
0
votes
1answer
105 views
How to get a callback function in vb6 with TaskDialogIndirect?
I'm using TaskDialogIndirect in VB6. It's working great, and I even have links working (with enabling TDF_ENABLE_HYPERLINKS) in the pszFooter member of TASKDIALOGCONFIG.
The problem is that while the ...
0
votes
1answer
74 views
CTaskDialog hyperlinks in vc++
Hi I am using CTaskDialog class in my MFC application. I am trying to customize it.
In this if i want to add hyperlinks, as of now there is no specific provision for this. But to add the buttons we ...
0
votes
1answer
138 views
How to modify TaskDialog's Show() call to be blocking and return a value when closed?
I'm using the WindowsAPICodePack's TaskDialog implementation, but it bugs me that I have to listen to click handlers on its buttons for even the more basic implementations. I'd like to convert/wrap it ...
0
votes
2answers
214 views
Can tdiQuestion be added to TaskDialog.MainIcon?
Can tdiQuestion be added to TaskDialog.MainIcon? Unavailability of the "?" icon in the TaskDialog renders it almost useless.
Is there any fix?