G
Guest
How to implement live update, like stock ticker updates shown in TV .
Nicholas Paldino said:pkumar,
It depends on the app you are trying to create. Are you trying to
figure out how to draw the scrolling values, or to get the values? The
values you see on TV are fetched from market data, and is constantly updated
(you have one thread updating the buffer with the values, and the UI thread
reads from that buffer).
What is it exactly you are trying to do?
--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)
pkumar said:How to implement live update, like stock ticker updates shown in TV .
pkumar said:Thanks Nicholas ,
I am looking for the logic for the Updating thread. As soon as the data
is inserted into my database, I want to get the value on my screen. How do
I
implement this thread.
thanks in advance
Nicholas Paldino said:pkumar,
It depends on the app you are trying to create. Are you trying to
figure out how to draw the scrolling values, or to get the values? The
values you see on TV are fetched from market data, and is constantly
updated
(you have one thread updating the buffer with the values, and the UI
thread
reads from that buffer).
What is it exactly you are trying to do?
--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)
pkumar said:How to implement live update, like stock ticker updates shown in TV .