autoscrolling memo in delphi -
does delphi contain component allows auto scroll text loaded db, in news sites?
tt's delphi 7 application , requires vertical scrolling.
none of solutions scrolling worked me in richedit memo. using delphi 2010 + w7. 1 works perfectly:
after every lines.add('...')
follows:
sendmessage(richeditmemo.handle, wm_vscroll, sb_linedown, 0);
found in: http://www.experts-exchange.com/programming/languages/pascal/delphi/q_10120212.html
Comments
Post a Comment