‎05-04-2009 06:31 PM
i am used in my project measurement studio and i have two timer one to draw graph and another to make calculate to give the graph timer it's data
(one timer dependent onthe other ) and whn i put build it gives me no error and it success but in the debug it stop automaticly
i dont know why ?
plz tell me
‎05-05-2009 05:37 PM
when i,
So you have two timers in your project, and your project builds, but it does not run properly? What language are you writing in? (C#, C++, VB) Can you post some code of how you are doing this?
‎05-06-2009 10:42 AM
i thax about your reply i used vb.net and measurement studio virsion 8.1
and i will tell u simple example take any example from anyproject and in the main timer writ simple code like out ($834,2)
and make debug
u will it run and the stop automaticly
and neally i will send u the code
‎05-07-2009 06:08 PM
when i,
I tried implementing what you suggested, but I think I am not understanding completely. Can you post some code that reproduces this error?
‎05-08-2009 01:06 PM
Private Sub timer_plot_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles timer_plot.Tick
dim s as double
s= out (&h34)
pressure_wave.PlotYAppend(s)
End Sub
"s" is a double came from parallel port
and i need make update to data after each time
‎05-11-2009 05:50 PM