*i have a vb.net application that plots 16 plots immediately, the plots data are realtime. the 16 plots must draw the points at the time they receive them (must be no delay), to do that
1- i made a timer with ticks at 50 ms.
2- at each timer tick call the plotting function 16 times (with a graph name as parameter)like that:
Draw(plot1)
Draw(plot2)
Draw(plot3)
Draw(plot4)
.
.
.
it made a big delay, when i used threading the application became unresponsive
can anyone help please??
THanKS,*