Questions tagged [taskdialog]

58 questions
0
votes
0 answers

Associating a CComboBox with a CRadioButton option on a CTaskDialog

I have been playing around with the CTaskDialog. At the moment I have this: The code at the moment is quite simple: CTaskDialog dlg(_T("Reminder 1.\n\nReminder 2."), _T("Important! Please read!"), _T("Reminder"),…
Andrew Truckle
  • 17,769
  • 16
  • 66
  • 164
0
votes
0 answers

Unable to find an entry point named 'TaskDialogIndirect DLL ComCtl32

I am using TaskDialog in one of my projects. It was working quite perfectly after putting in quite a lot of hard work. But just a moment ago, when I ran my app, suddenly this exception has started to spur up in the same application that was working…
Dia Sheikh
  • 190
  • 2
  • 16
0
votes
1 answer

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 cursor turns into a "hand" when hovering over the…
JeffR
  • 23
  • 5
0
votes
0 answers

Wpf custom task dialog showing multiple

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…
Richard R
  • 1
  • 2
0
votes
0 answers

Is the way to disable path shortening in windows TaskDialogs (c#)?

I've used WindowsApiCodePack C# wrapper of windows TaskDialogs. When I tried to show long text with paths, I got all my paths shortened by ellipsis instead of true word-wrap. This makes filenames in paths non-readable. Like here: Same behavior…
rattler
  • 379
  • 2
  • 5
  • 15
0
votes
1 answer

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 can use "AddCommandControl" and can handle the…
Hara
  • 1,467
  • 4
  • 18
  • 35
0
votes
0 answers

How to show a TaskDialog outside of Windows Form in C#? (comctl v6 is not loaded)

I love TaskDialogs and quite often use them, but I have trouble invoking them outside of Windows Form class. In a Winforms class, they can be invoked easy like this: new Microsoft.WindowsAPICodePack.Dialogs.TaskDialog().Show(); So to show a general…
KnorxThieus
  • 567
  • 8
  • 17
0
votes
1 answer

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 so that like the old MessageBox it blocks until…
JustABill
  • 1,562
  • 15
  • 20
0
votes
1 answer

Using TaskDialogConfig with std::string

I am trying to to create a Task Dialog, using the TASKDIALOGCONFIG strucutre. My application uses Unicode. This is my code: string error_text = get_error_text(); string error_code = get_error_code(); TASKDIALOGCONFIG tdc = {…
Victor
  • 13,914
  • 19
  • 78
  • 147
0
votes
1 answer

Can not replace classic messagebox with CTaskDialog in mfc

I have a mfc application where classic looking messagebox are used all over. I want to replace them with CTaskDialog. first I added afxtaskdialog.h but got error of _UNICODE not defined . When I put #define _UNICODE in the header file of the .cpp ,…
Codename_DJ
  • 553
  • 1
  • 11
  • 40
0
votes
1 answer

EntryPointNotFoundException TaskDialog at start of Application but runs fine later

I have the TaskDialog source directly from the WindowsAPI Pack for .NET (The wrapper) but whenever I try and open a TaskDialog straight in the static void Main() area of my program it throws an EntryPointNotFoundException. However the TaskDialog…
jduncanator
  • 2,154
  • 1
  • 22
  • 39
-1
votes
1 answer

tkinter askdirectory()

File move based on last update. Using button 3 only, I am missing a slash at the end of the directory. This causes the path to merge with the text files I am trying to move: Exception in Tkinter callback Traceback (most recent call last): File…
JamieWill
  • 11
  • 1
  • 1
  • 2
-2
votes
1 answer

How to use TaskDialog in c# Windows Forms

Actually I need a messageBox with custom buttons, and I don't want to use another form or messageBoxManager as a messageBox. I thought maybe a TaskDialog help me but i don't know how to use it.
1 2 3
4