autoscrolling in .net

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I've a requirement in which I need to implement autoscrolling....
Is there any control in .net which supports this functionality/............

My display list(data) should be scrolling ...........
 
Hi AVL,

You could write your own control that combined a listbox with a timer. On
the call of the timer, you could move the selection down one item.

Alternatively, you could go through and use GDI+ to paint the text on the
Graphics object yourself in the custom control's paint() event.

HTH,

Adam
 
Back
Top