Stock Ticker

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

Guest

Hi. I want to create a ticker similare to the one shown on CNBC. Can someone tell me a flicker free way to do it?
 
If you create your own control to do it, and do all of your own painting,
you can set:

SetStyle (ControlStyles.UserPaint, true);
SetStyle (ControlStyles.AllPaintingInWmPaint, true);
SetStyle (ControlStyles.DoubleBuffer, true);

in the constructor. This will eliminate flickering.

Robert


rohan ranade said:
Hi. I want to create a ticker similare to the one shown on CNBC. Can
someone tell me a flicker free way to do it?
 
HI , I wanna know what is CNBC?
rohan ranade said:
Hi. I want to create a ticker similare to the one shown on CNBC. Can
someone tell me a flicker free way to do it?
 
Back
Top