or



my question is (i think) simple.
I have a variable (double voltage) changing every 4 m second, and basically i want to show the variations on a chart. I'm using visual studio 2010 and the target is .net Framework 4.0
Note: i want it to work on regular desktop application ( not ASP.Net web application and not WPF. )
My application will be running on windows computers, XP, 7 and 8.
is your live data chart control what suites me ?
Please, i need an answer ASAP.
Regards,
Nada.
datagridview1.DataSource = Nothingdatagridview1.DataSource = Log_TableIf Log_Table.Rows.Count > 0 Then ' Log_Rec = Log_Table.First Dim Row As Telerik.WinControls.UI.GridViewRowInfo For Each Row In datagridview1.Rows If Row.Cells("Rec_ID").Value = RecID Then Row.IsSelected = True Else Row.IsSelected
= False End If Next For Each Row In datagridview1.Rows If Row.IsSelected Then End If NextEnd If