TIWAdvMessageDialog1 and String Lists

How do I use TIWAdvMessageDialog1 to display a string list?

TIA

Zane

Hi,


I'm not sure I understand your question correctly.
Can you please explain exactly what you are trying to do?

What I want to display the following:

Line1
Line2
Line3

What I do is

IWAdvMessageDialog1.Notes := 'Line1' + CrLf + 'Line2' + CrLf +'Line3' + CrLf;


. but it is displayed as :

Line1Line2Line3

Regards

Zane

Please use HTML tags to display multiline text content in the TIWAdvMessageDialog control.


Example:

IWAdvMessageDialog1.Notes := 'Line1<br>Line2<br>Line3<br>';