TAdvTaskDialog not handling file paths

Using TMS component pack 8870, the TAdvTaskDialog doesn't handle file paths correctly if a folder or file name after a path separator begins with "n".

To reproduce, create an empty project and drop the component on the form.  Add the following in the constructor:
    String msg = "C:\\temp\\not a file";
    AdvTaskDialog1->Content = msg;
    AdvTaskDialog1->Execute();
The output in the message dialog is incorrectly shown as two lines:
    C:\temp
    ot a file

Regards,
Robin

This is actually a bug in the Microsoft TaskDialog API function.
To avoid it, you can use the non-native version (i.e. our own implementation).
Set TAdvTaskDialog.NonNativeDialog = nndAlways for this.

Thanks that works.