First of all I would like to thank the creator of TRealTimeMarquee for this very nice component.
My question :
I have TRealTimeMarquee with moVertical Orientation the text that I want to scroll is html formattting like this :
line1
line2
ine3
but the problem newline is omitted and it show it in on long line like this :
line1line2ine3
- Code: Select all
RealTimeMarquee1.Orientation:=moVertical ;
RealTimeMarquee1.Items.Clear ;
RealTimeMarquee1.Items.Add ;
RealTimeMarquee1.Items[0].Text :='line1<br><b>line2</b><br><font color="#FF0000" >line3</font>';
RealTimeMarquee1.Items[0].Style:=msHTML ;
RealTimeMarquee1.Active :=true;
How to fix that ?!
Thanks