AdvMessageDlg Text Truncation Issue

As you can see, AdvMessageDlg truncates the line: 'www.skylog.co.uk\PRO\History_Airports.txt' to 'www.skylog.co.uk\ PRO\History_Airports.t...' in my app. Bug?

AdvMessageDlg

Unfortunately this is not something that is in our control, as this is native drawing via the Windows API.

Another way to handle this is to use the TAdvTaskDialog
and change the property NonNativeDialog to nndAlways to ensure that the drawing is done by our component.

Ok, thanks Gjalt, will do that.