How do I add a link to a pop-up?

Hi @Alien

there are several issues

  1. in CPython3 the special None keyword can be used as attribute (or enum)
    you can replace
    dialog.DefaultButton = TaskDialogResult.None
    by
    dialog.DefaultButton = getattr(TaskDialogResult, "None")

  2. then will come an overload problem, you can look at this topic for more information

2 Likes